skulumani / system_setup

Apps and programs for a new system
1 stars 0 forks source link

Tabs #8

Closed skulumani closed 7 years ago

skulumani commented 7 years ago

" Set tabstop, softtabstop and shiftwidth to the same value command! -nargs= Stab call Stab() function! Stab() let l:tabstop = 1 input('set tabstop = softtabstop = shiftwidth = ') if l:tabstop > 0 let &l:sts = l:tabstop let &l:ts = l:tabstop let &l:sw = l:tabstop endif call SummarizeTabs() endfunction

function! SummarizeTabs() try echohl ModeMsg echon 'tabstop='.&l:ts echon ' shiftwidth='.&l:sw echon ' softtabstop='.&l:sts if &l:et echon ' expandtab' else echon ' noexpandtab' endif finally echohl None endtry endfunction

skulumani commented 7 years ago

http://vimcasts.org/episodes/tabs-and-spaces/