nvim/init.commands.vim

10 lines
199 B
VimL
Raw Normal View History

2021-09-08 16:08:30 +00:00
function! s:spacestotabs()
%s/^ / /e
%s/^ / /e
%s/^ / /e
%s/^ / /e
%s/^ / /e
%s/^ / /e
endfunction
command SpacesToTabs call s:spacestotabs()