Skip to content

Instantly share code, notes, and snippets.

@jasongonzales23
Created October 8, 2017 21:49
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasongonzales23/6189da1d82ee05a91edfd53403d6941d to your computer and use it in GitHub Desktop.
Save jasongonzales23/6189da1d82ee05a91edfd53403d6941d to your computer and use it in GitHub Desktop.
Vim console.log shortcut
" Console log from insert mode; Puts focus inside parentheses
imap cll console.log()<Esc><S-f>(a
" Console log from visual mode on next line, puts visual selection inside parentheses
vmap cll yocll<Esc>p
" Console log from normal mode, inserted on next line with word your on inside parentheses
nmap cll yiwocll<Esc>p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment