I broke up with neovim....vim is my best friend now

This commit is contained in:
LinlyBoi
2023-04-30 08:14:07 +03:00
parent 0d185449c5
commit 4a4a6b1e81
5245 changed files with 468325 additions and 25 deletions

View File

@@ -0,0 +1,5 @@
vim-vsnip-integ vsnip_integ.txt /*vim-vsnip-integ*
vsnip-integ vsnip_integ.txt /*vsnip-integ*
vsnip-integ-contents vsnip_integ.txt /*vsnip-integ-contents*
vsnip-integ-example vsnip_integ.txt /*vsnip-integ-example*
vsnip-integ-install vsnip_integ.txt /*vsnip-integ-install*

View File

@@ -0,0 +1,38 @@
*vim-vsnip-integ* *vsnip-integ*
vim-vsnip integrations.
==============================================================================
CONTENTS *vsnip-integ-contents*
INSTALL |vsnip-integ-install|
EXPAMPLE |vsnip-integ-example|
==============================================================================
INSTALL *vsnip-integ-install*
You can use your favorite plugin manager.
>
" dein.vim
call dein#add('hrsh7th/vim-vsnip-integ')
" vim-plug
Plug 'hrsh7th/vim-vsnip-integ'
" neobundle
NeoBundle 'hrsh7th/vim-vsnip-integ'
<
==============================================================================
EXAMPLE *vsnip-integ-example*
Using vnsip-integ with implemented completion engine by some plugin.
>
" Shougo/pum.vim
autocmd User PumCompleteDone call vsnip_integ#on_complete_done(g:pum#completed_item)
<