How to enable <tab> autocompletion supported in cmd2 #1317
Replies: 6 comments 6 replies
-
As long as Supported
What OS and terminal are your users running in? If on Linux or Windows, can you |
Beta Was this translation helpful? Give feedback.
-
I have installed gnureadline on mac but still facing the error:
|
Beta Was this translation helpful? Give feedback.
-
def _completion_supported(self) -> bool:
"""Return whether tab completion is supported"""
return self.use_rawinput and bool(self.completekey) and rl_type != RlType.NONE |
Beta Was this translation helpful? Give feedback.
-
Is |
Beta Was this translation helpful? Give feedback.
-
Let me take the time to say i really really thank you folks for developing such an amazing module & your efforts to maintain it. I find immediate responses to all queries i have & everyone in my team as well the users of my tool appreciate the thoughts gone into this module. Truly Amazing!!! |
Beta Was this translation helpful? Give feedback.
-
I'm out of ideas and unfortunately do not have a Mac to test on. Since it is only happening to one user, I would check their terminal settings to see if they are different from the other users' settings. |
Beta Was this translation helpful? Give feedback.
-
I had enabled tab autocomplete support using completer functions in my cmd2 app:
But when users type <tab> all they see are spaces and the autocompletions doesn't show up.
Should we install certain modules or enable some settings for their shell to pick up and recognize the tab to be an autocomplete?
Beta Was this translation helpful? Give feedback.
All reactions