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
ctrl-p
ctrl-n
It doesn't seem possible to do vim word completion in Zed. In regular vim, it's ctrl-p/ctrl-n, but in Zed that goes to previous line/next line.
For example, if I type the following, then hit ctrl-p after typing autoc, vim mode should complete the word to autocomplete:
autoc
autocomplete
This document contains the word autocomplete. Let’s try to autoc<ctrl-p>
Expected result:
This document contains the word autocomplete. Let’s try to autocomplete
VIM autocomplete has a lot of features that would be useful in Zed. The docs include some useful options:
The Vim editor goes through a lot of effort to find words to complete. By default, it searches the following places: Current file Files in other windows Other loaded files (hidden buffers) Files which are not loaded (inactive buffers) Tag files All files #included by the current file
The Vim editor goes through a lot of effort to find words to complete. By default, it searches the following places:
…
If you know what you are looking for, you can use these commands to complete with a certain type of item: CTRL-X CTRL-F file names CTRL-X CTRL-L whole lines CTRL-X CTRL-D macro definitions (also in included files) CTRL-X CTRL-I current and included files CTRL-X CTRL-K words from a dictionary CTRL-X CTRL-T words from a thesaurus CTRL-X CTRL-] tags CTRL-X CTRL-V Vim command line
If you know what you are looking for, you can use these commands to complete with a certain type of item:
CTRL-X CTRL-F file names CTRL-X CTRL-L whole lines CTRL-X CTRL-D macro definitions (also in included files) CTRL-X CTRL-I current and included files CTRL-X CTRL-K words from a dictionary CTRL-X CTRL-T words from a thesaurus CTRL-X CTRL-] tags CTRL-X CTRL-V Vim command line
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Check for existing issues
Describe the feature
It doesn't seem possible to do vim word completion in Zed. In regular vim, it's
ctrl-p
/ctrl-n
, but in Zed that goes to previous line/next line.For example, if I type the following, then hit
ctrl-p
after typingautoc
, vim mode should complete the word toautocomplete
:Expected result:
VIM autocomplete has a lot of features that would be useful in Zed. The docs include some useful options:
…
If applicable, add mockups / screenshots to help present your vision of the feature
No response
The text was updated successfully, but these errors were encountered: