You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Start a new note and start typing. Once you've typed a few words, try typing a word that you've already added to the buffer (or another open buffer)
Expected Behavior
The suggestion pop-up should appear with possible completion options
Actual Behavior
The first suggestion in the list is automatically selected and inserted into the buffer.
Possible Causes
After some discussion here and some experimentation, it seems that the issue is caused be this line of code where completeopt has longest appended to it. This is causing the noinsert option (which ncm2's README specifies is necessary for it to operate properly) to have no effect (per the built-in vim documentation for completeopt).
Has anyone else experienced this?
The text was updated successfully, but these errors were encountered:
Reproduction Steps
Note: I'm using
neovim
init.vim
:PlugInstall
Expected Behavior
The suggestion pop-up should appear with possible completion options
Actual Behavior
The first suggestion in the list is automatically selected and inserted into the buffer.
Possible Causes
After some discussion here and some experimentation, it seems that the issue is caused be this line of code where
completeopt
haslongest
appended to it. This is causing thenoinsert
option (whichncm2
's README specifies is necessary for it to operate properly) to have no effect (per the built-invim
documentation forcompleteopt
).Has anyone else experienced this?
The text was updated successfully, but these errors were encountered: