We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5aa21c commit d88026dCopy full SHA for d88026d
src/tmuxp/cli/import_config.py
@@ -105,10 +105,15 @@ def create_import_subparser(
105
)
106
107
try:
108
- import shtab
+ import argcomplete
109
+ import argcomplete.completers
110
- teamocil_config_file.complete = shtab.FILE # type: ignore
111
- tmuxinator_config_file.complete = shtab.FILE # type: ignore
+ teamocil_config_file.completer = ( # type: ignore
112
+ argcomplete.completers.FilesCompleter()
113
+ )
114
+ tmuxinator_config_file.completer = ( # type:ignore
115
116
117
except ImportError:
118
pass
119
0 commit comments