" Function to change the tab size dynamically."
" Usage: :Stab [size]
function! Stab(size)
let &tabstop=a:size
let &sw=a:size
endfunction
:command -nargs=1 Stab :call Stab(<args>)
" Function to change the tab size dynamically."
" Usage: :Stab [size]
function! Stab(size)
let &tabstop=a:size
let &sw=a:size
endfunction
:command -nargs=1 Stab :call Stab(<args>)