We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
With GNU Readline I can press tab to view the files and autocomplete. How can I achieve this with replxx?
The text was updated successfully, but these errors were encountered:
Hello.
With replxx you need to register user defined completion function and in this function you need to provide list of files explicitly.
replxx
You can check Huginn shell for example of implementation for such functionality (file name completer).
Also examples included in this (replxx) repository contain very simple examples on how to define a completer function.
Sorry, something went wrong.
So, in other words, replxx does not 100% replace GNU readline...
Yes. replxx is not seamless replacement for readline.
readline
No branches or pull requests
With GNU Readline I can press tab to view the files and autocomplete. How can I achieve this with replxx?
The text was updated successfully, but these errors were encountered: