dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

saveas.vim (173B)


      1 function! s:saveas()
      2   let cursor_pos = repeat("\<Left>", len(expand("%:e"))+1)
      3   return "saveas ".expand("%:p").cursor_pos
      4 endfunction
      5 cnoreabbrev <expr> san <SID>saveas()