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 f175a7b commit c18666bCopy full SHA for c18666b
src/tmuxp/cli/load.py
@@ -14,6 +14,7 @@
14
15
import click
16
import kaptan
17
+from click.shell_completion import CompletionItem
18
19
from libtmux.common import has_gte_version
20
from libtmux.server import Server
@@ -441,7 +442,9 @@ def load_workspace(
441
442
return _setup_plugins(builder)
443
444
-def config_file_completion(ctx, params, incomplete):
445
+def config_file_completion(
446
+ ctx: click.Context, param: click.Parameter, incomplete: str
447
+) -> List[CompletionItem]:
448
config_dir = pathlib.Path(get_config_dir())
449
choices: List[pathlib.Path] = []
450
0 commit comments