-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
Thoughts on auto-complete behavior #822
Comments
I definitely think I would like if autocomplete suggestions only appeared after I started typing. |
Thanks for a detailed report! I've numbered your feedback so I can respond to it in points:
|
Addressed number 3 in 2c0468f |
I believe this is not discoverable. At least ctrl-c is not intuitive enough for people coming from vim and kakoune, might be hard to find. |
It's equivalent in |
Possibly fixed number 4 in 3edca78 |
This is all solved now :) |
Thank you so much! And congrats on 5.0 -- so many improvements! Onward and upward. |
Hi, Sorry I'm commenting on a closed issue. But here you mention exactly what I was looking for:
Is there a way to make ctrl-c exit pop-up and insert mode just as ESC does? I keep making mistakes. In my case, coming from vim, I basically never use ESC. I always use ctrl+c. I understand this is a design decision. But is there anyway I can customize the behaviour? Thanks! |
@rcastill it's not customisable as of now, and it would require either re-bindable keymap support for popups (there's a similar open issue for pickers) or scripting/plugin support. Or if it's tripping you up too much you could build from source after changing the keys in the source code itself. |
Yep. I just did that and it worked. I hope it doesn't break anything. Thanks @sudormrfbin |
I'm running into the same issue @rcastill pointed here:
Any workaround for this without building from source? cc @sudormrfbin TIA 🙏🏻 |
Hi! I'm testing out the new auto-complete idle timeout behavior and have some feedback on auto-complete in general that I didn't really notice until it started happening automatically, with VSCode's behavior just as a reference for comparison:
lo
while programming in Go and I get some document-specific completions as expected. I follow by typing outlog.
as if to typelog.Println
or something of that nature and get completions as appropriate, all good up to this point. Finally, I decide I want to do something else and backspace a few times back to justlo
. From here the completion suggestions don't change, it's stuck on thinking I want to dolog.<SomeFunc>
. I tested this in VSCode and their completion will go back to document-specific suggestions in that case, as you'd expect. Let me know if this makes sense or if a video would be preferableThe text was updated successfully, but these errors were encountered: