Skip to content

Instantly share code, notes, and snippets.

@jaytaylor
Created September 20, 2011 19:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jaytaylor/1230027 to your computer and use it in GitHub Desktop.
Save jaytaylor/1230027 to your computer and use it in GitHub Desktop.
Better Tab/Shift-Tab for block indentation
" Paste this into your .vimrc to make tab/shift-tab work on blocks of text just like in a fancy GUI IDE
map <Tab> >gb
map <S-Tab> v<gv<ESC>0I<ESC>l
imap <S-Tab> <ESC>v<gv<ESC>0I
vnoremap <Tab> >gv
vnoremap <S-Tab> <gv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment