Add note about <c-space> vs. <c-@> to Readme (#267)

Vim 8 can't interpret <c-space> in the terminal properly, instead you
have to write <c-@>.

Closes #266
This commit is contained in:
Isopod
2021-12-06 21:53:41 +01:00
committed by GitHub
parent 73ac8e4e45
commit 9c7651894c

View File

@@ -31,6 +31,8 @@ inoremap <expr> <cr> pumvisible() ? asyncomplete#close_popup() . "\<cr>" : "\<cr
```vim
imap <c-space> <Plug>(asyncomplete_force_refresh)
" For Vim 8 (<c-@> corresponds to <c-space>):
" imap <c-@> <Plug>(asyncomplete_force_refresh)
```
### Auto popup