-
-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
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
How do I go about troubleshooting autocompletion not working in Zsh? #35
Comments
Same here +1 |
+1 |
Debugged my code and found that the issue was with my code actually. process.stdin.setRawMode( true )
process.stdin.resume() After removing this line the completion began to work properly. |
Were you able to get this to work? |
I have not revisited this. |
Running into this too |
I have a setup/cleanup script that successfully adds and removes:
I have also setup this alias in
~/.zshrc
:alias lando='bin/app.js'
.app --completion
outputs:My
app.js
contains:Now, I expect when that when I type
app<tab>
that I will see the options, but I do not. What are my next steps to troubleshooting? What command outputs the options that I hope to see? Is it possible that my JS is outputting garbage prematurely that breaks Zsh's autocompletion?The text was updated successfully, but these errors were encountered: