aclsp.vim
vim9script
set complete=o,.
set completeopt=popup,fuzzy
set autocomplete
set packpath=~/.config/vim
packadd lsp
g:LspOptionsSet({
autoComplete: false,
})
if executable('clangd')
g:LspAddServer([{
name: 'clangd',
filetype: ['c', 'cpp'],
path: 'clangd',
args: ['--background-index'],
}])
endif
vim --clean -S aclsp.vim ~/prj/vim/src/buffer.c +79
obuf->b_locked<C-w>
Popup menu with completion candidates should be opened.
https://asciinema.org/a/mA1UGteC2FLzAJyDsP1FNKBol
It works using yegappan/lsp completion.
ping @girishji
There is no mapping defined for i_CTRL-W
.
9.1.1844
debian13, bash
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.