Migrated vim+vundle config to neovim+plug
This commit is contained in:
commit
b531014a99
20 changed files with 2861 additions and 0 deletions
8
after/plugin/synstack.vim
Normal file
8
after/plugin/synstack.vim
Normal file
|
@ -0,0 +1,8 @@
|
|||
" shows syntaxic group of the word under the cursor
|
||||
command! SynStack :call SynStack()
|
||||
function! SynStack()
|
||||
if !exists("*synstack")
|
||||
return
|
||||
endif
|
||||
echo map(synstack(line('.'), col('.')), 'synIDattr(v:val, "name")')
|
||||
endfunc
|
Loading…
Add table
Add a link
Reference in a new issue