move to lua and make a poor man's ide

This commit is contained in:
Vladan Popovic 2021-11-25 22:10:31 +01:00
parent 8017c2ac22
commit f551318edc
No known key found for this signature in database
GPG key ID: 39762748EB5A39D9
14 changed files with 418 additions and 143 deletions

5
plugin/compe.vim Normal file
View file

@ -0,0 +1,5 @@
inoremap <silent><expr> <C-Space> compe#complete()
inoremap <silent><expr> <CR> compe#confirm('<CR>')
inoremap <silent><expr> <C-e> compe#close('<C-e>')
inoremap <silent><expr> <C-f> compe#scroll({ 'delta': +4 })
inoremap <silent><expr> <C-d> compe#scroll({ 'delta': -4 })