Skip to content

Instantly share code, notes, and snippets.

@AndrewRadev
Created October 28, 2010 21:00
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 AndrewRadev/652312 to your computer and use it in GitHub Desktop.
Save AndrewRadev/652312 to your computer and use it in GitHub Desktop.
" <space>x -> :X
" For easier typing of custom commands
noremap <space> :call <SID>SpaceMapping()<cr>
function! s:SpaceMapping()
echo
let c = nr2char(getchar())
call feedkeys(':'.toupper(c))
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment