Tablines and Multicursor

This commit is contained in:
2023-08-13 19:40:22 +02:00
parent b1c4721cd6
commit 2b1446b76a
6 changed files with 65 additions and 22 deletions

13
viml/macros.vim Normal file
View File

@@ -0,0 +1,13 @@
function Common()
endfunction
function Ctypes()
let @c = "\<ESC>0i/*\<ESC>A */\<ESC>0j"
endfunction
" load common macros for all Filetypes
autocmd BufEnter * :call Common()
" load c-type macros
autocmd BufEnter *\.c Ctypes()