lua stuff

This commit is contained in:
Christian Nieves
2022-10-18 16:45:09 +00:00
parent 450dd13e5b
commit 21837e0336
43 changed files with 503 additions and 239 deletions

View File

@ -115,3 +115,13 @@ nmap <leader>e :e %%
vnoremap <leader>p "_dP
nnoremap <leader>rp :VimuxOpenRunner<cr> :VimuxRunCommand '!!'<cr> :call VimuxSendKeys("Enter")<cr>
"Showing highlight groups
" nmap <leader>sp :call <SID>SynStack()<CR>
nmap <leader>shg :call <SID>SynStack()<CR>
function! <SID>SynStack()
if !exists("*synstack")
return
endif
echo map(synstack(line('.'), col('.')), 'synIDattr(v:val, "name")')
endfunc