Migrate '.vim/plugin' to neovim

This commit is contained in:
2025-10-20 23:52:13 +02:00
parent e3d9612e57
commit 24ce8f39af
9 changed files with 26 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
vim.cmd([[
function! SynGroup()
let l:s = synID(line('.'), col('.'), 1)
echo synIDattr(l:s, 'name') . ' -> ' . synIDattr(synIDtrans(l:s), 'name')
endfun
com! -nargs=0 Syn :call SynGroup()
]])