-
-
Save nervetattoo/3652878 to your computer and use it in GitHub Desktop.
" 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 |
Great stuff! Thank you.
Awesome! Just found this now but still helpful!
I adjusted it a little to not block c
in visual mode.
imap gll console.log()<Esc>==F(a
vmap gl cgll<Esc>p
It is awesome! Thank you.
Amazing! love the visual mode support, also inserting currently cursor-pointed variable in normal mode as param of console.log() is impressive!
Thank you!
Here is a modified console log vim inserter
imap cll console.log({});<Esc>==f{a
this makes it so that you have
console.log({})
With the cursor inside the curlies, because then if you type
console.log({myvariable})
Then the console log contains
{myvariable:3}
That way you don't have to do things like
console.log('myvariable', myvariable)
nnoremap gll oconsole.log("LINE: =line('.')","")F"i
Then hit gll to produce console.log("LINE: line","").
How to run this in VSCode VIm Plugin? @nervetattoo
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.
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>
It dosn't work for me in terminal Vim, only Macvim(Gvim).
I use instead abbreviation:
:iab cl console.log();==f(a
Thanks BTW.