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
{{ message }}
This repository was archived by the owner on Jul 27, 2018. It is now read-only.
This works perfectly as long I am not using the nvim-completion-manager in my vimrc. For example typing…
<!-- test.html --><p>Hello World</
…completes to…
<!-- test.html --><p>Hello World</p>
When I enable nvim-completion-manager I can use the key combination <C-X><C-o> to open the popup menu and <C-o> to select the first match. Unfortunatly adjusting the previous keybinding to…
I think the problem is, that the tag suggestions loaded asynchronously are not available when the key mapping is executed and as a consequence no match can be selected from the popup menu.
Is there any workaround I could use?
Using neovim 0.2.2 on macOS 10.13.2 with the latest version of nvim-completion-manager.
I wanted to follow a tip to auto complete the name of the current HTML tag, whenever I start typing the closing tag from the Vim Tipps Wiki
This works perfectly as long I am not using the nvim-completion-manager in my vimrc. For example typing…
…completes to…
When I enable nvim-completion-manager I can use the key combination
<C-X><C-o>to open the popup menu and<C-o>to select the first match. Unfortunatly adjusting the previous keybinding to……does not do the trick.
I think the problem is, that the tag suggestions loaded asynchronously are not available when the key mapping is executed and as a consequence no match can be selected from the popup menu.
Is there any workaround I could use?
Using neovim 0.2.2 on macOS 10.13.2 with the latest version of nvim-completion-manager.