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 d88026d commit 4ff3c6cCopy full SHA for 4ff3c6c
src/tmuxp/cli/convert.py
@@ -18,9 +18,9 @@ def create_convert_subparser(
18
help="checks tmuxp and current directory for config files.",
19
)
20
try:
21
- import shtab
+ from tmuxp.cli.completions import ConfigFileCompleter
22
23
- config_file.complete = shtab.FILE # type: ignore
+ config_file.completer = ConfigFileCompleter() # type:ignore
24
except ImportError:
25
pass
26
0 commit comments