neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

leftpad.vim (59B)


      1 function! leftpad#pad(str)
      2  return '  '.a:str
      3 endfunction