Skip to content

Instantly share code, notes, and snippets.

@nervetattoo
Created September 6, 2012 08:13
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save nervetattoo/3652878 to your computer and use it in GitHub Desktop.
Save nervetattoo/3652878 to your computer and use it in GitHub Desktop.
console.log in vim
" Console log from insert mode; Puts focus inside parentheses
imap cll console.log();<Esc>==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
@darkmasta
Copy link

darkmasta commented Apr 1, 2021

How to run this in VSCode VIm Plugin? @nervetattoo

@delbetu
Copy link

delbetu commented Oct 14, 2021

nnoremap gll oconsole.log("LINE: =line('.')","")F"i

Then hit gll to produce console.log("LINE: line","").

This didn't work for me (in neovim) the =line('.') doesn't get evaluated.

@cmdcolin
Copy link

cmdcolin commented Jun 3, 2022

one maybe more "modern" alternative to this gist (which i used happily for years already, but wanted to try out something new) is to use "snippet" plugins like https://github.com/hrsh7th/vim-vsnip

Procedure:
Install vim-vsnip plugin
Run :VsnipOpen
Select type global (or filetype specific)
This opens a blank file where you can put your snippets
Put this in the snip file

{
  "console.log": {
    "prefix": "cl",
    "body": "console.log(${0})"
  }
}

console.log is the name of the snippet. you can add more to the file for custom usages. Then while you are typing in insert mode

cl<Tab>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment