We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8d15cf commit 23c8c59Copy full SHA for 23c8c59
tmuxp/cli/load.py
@@ -13,6 +13,7 @@
13
14
import click
15
import kaptan
16
+from click.shell_completion import CompletionItem
17
18
from libtmux.common import has_gte_version, which
19
from libtmux.server import Server
@@ -440,7 +441,9 @@ def load_workspace(
440
441
return _setup_plugins(builder)
442
443
-def config_file_completion(ctx, params, incomplete):
444
+def config_file_completion(
445
+ ctx: click.Context, param: click.Parameter, incomplete: str
446
+) -> List[CompletionItem]:
447
config_dir = pathlib.Path(get_config_dir())
448
choices: List[pathlib.Path] = []
449
0 commit comments