Allow running complete_done_after() in normal mode#1429
Allow running complete_done_after() in normal mode#1429infmagic2047 wants to merge 2 commits intoprabirshrestha:masterfrom
Conversation
|
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
|
@infmagic2047 could you fix merge conflicts. |
If user selects a completion item and presses <Esc>, the key sequence to feedkeys() will get run in normal mode. This can be handled with a <Plug> mapping that resolves to different sequences in normal mode and insert mode. As a bonus, the use of <silent> mappings eliminate the message line garbage from feedkeys.
874a63d to
a760749
Compare
|
I just rebased on master. |
|
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
|
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
1 similar comment
|
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
|
I wonder this works with lexima.vim |
If user selects a completion item and presses
<Esc>, the key sequence to feedkeys() will get run in normal mode. This can be handled with a<Plug>mapping that resolves to different sequences in normal mode and insert mode.As a bonus, the use of
<silent>mappings eliminate the message line garbage from feedkeys.