nvim/viml/automacro.vim

10 lines
162 B
VimL

" predefined macros in functions
function SpacedLine()
normal o
normal O
normal O
normal j
endfunction
nnoremap <leader>o :call SpacedLine()<CR>