Skip to content

Instantly share code, notes, and snippets.

@lodestone
Created August 27, 2018 12:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lodestone/8ab8dd2823639b6c14ed1a0eaffb072b to your computer and use it in GitHub Desktop.
Save lodestone/8ab8dd2823639b6c14ed1a0eaffb072b to your computer and use it in GitHub Desktop.
Vim Tip of the Day 2018-08-27
" Make backspace do something useful in normal mode:
" - Switch to previous buffer quickly
nnoremap <bs> :b#<CR>
" Make tab do something useful in normal mode:
" - Switch focus to next window.
nnoremap <tab> <c-w><c-w>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment