summary refs log tree commit diff
path: root/.vim/autoload/retab.vim
blob: 8cb8759a6aa7982900b3ef796f468c2518f04390 (plain) (blame)
1
2
3
4
5
6
7
func! retab#do()
    for lineno in range(a:firstline, a:lastline)
        normal! <<
        normal! >>
    endfor
endfunc