What is the shortcut in Visual Studio Code for console.log

TypescriptVisual Studio-Code

Typescript Problem Overview


I want to know what is the shortcut for console.log in Visual Studio code?

Typescript Solutions


Solution 1 - Typescript

Update Feb, 2019:

As suggested by Adrian Smith and others: If you want to bind a keyboard shortcut to create a console log statement, you can do the following:

  1. File > Preferences > Keyboard Shortcuts
  2. Above the search bar on the right you'll see this icon enter image description here Click on it. (When hovered over it it says: Open keyboard shortcuts (JSON)
  3. Add this to the JSON settings:
{
  "key": "ctrl+shift+l",
  "command": "editor.action.insertSnippet",
  "when": "editorTextFocus",
  "args": {
    "snippet": "console.log('${TM_SELECTED_TEXT}$1')$2;"
  }
}

Pressing CTRL+SHIFT+L will output the console snippet. Also, if you already have text selected it will be put inside the log statement.


If you rather want intellisene/autocomplete:

Go to Preferences -> User Snippets -> Choose Typescript (or whatever language you want) or a 'Global Snippet File' depending on your need. A json file should open. You can add code snippets there.

There is already a snippet for console.log commented out:

"Print to console": {
    "scope": "javascript,typescript,javascriptreact",
	"prefix": "log",
	"body": [
		"console.log('$1');",
		"$2"
	],
	"description": "Log output to console"
}

You used to have to do this for every language, but now in the 'Global Snippet File' you can set the scope property which allows you to explicitly declare multiple languages.

Should you need the exact name of the language: check it by clicking the Select Language Mode button in the right side of the VS Code bottom toolbar. It will prompt you to select a language at the top and in the process will show the JSON name of the language in parenthesis, which you can enter in the snippet file as in the example above.


Also, you should set "editor.snippetSuggestions": "top", so your snippets appear above intellisense. Thanks @Chris!

You can find snippet suggestions in Preferences -> Settings -> Text Editor -> Suggestions

Solution 2 - Typescript

All the above answers works fine, but if you don't want to change the configuration of the visual studio code, rather want auto-completion for console.log(object); you can simply use this shortcut clg and press Ctrl+Space for suggestion and hit Enter
Note : This feature is avaliable when you install JavaScript (ES6) code snippets extension.

Similarly you have auto-completion for :

  • clg for console.log(object);
  • clo for console.log('object :', object);
  • ccl for console.clear(object);
  • cer for console.error(object);
  • ctr for console.trace(object);
  • clt for console.table(object);
  • cin for console.info(object);
  • cco for console.count(label);

    (This list continues...)

    Also, Another great extension in this regard is Turbo Console Log. I'm personally using both of these on my daily basis and enjoy their combination.

References:

  1. link for JavaScript(ES6) code snippets :

https://marketplace.visualstudio.com/items?itemName=xabikos.JavaScriptSnippets

enter image description here

  1. Preview from Visual Studio Code:

enter image description here

Solution 3 - Typescript

Type log and hit enter. It will auto-complete console.log();

Solution 4 - Typescript

The top answer by @Sebastian Sebald is perfectly fine, but hitting a similar problem (not console.log specifically, but rather it "missing") I wanted to also contribute an answer.

Your prefix is indeed working - by default its log and in your case you have changed it to c. When you type log (or c) VSCode will generate a full list of "all the things™" based on many factors (ie I don't know what factors, probably class relevance).

Things like snippets tend to gravitate towards the bottom. To bump them to the top, despite their length, add this to your settings:

"editor.snippetSuggestions": "top"

Solution 5 - Typescript

In Atom there is a nice shortcut for console.log() and I wanted the same in VS Code.

I used the solution by @kamp but it took me a while to figure out how to do it. Here are the steps I used.

  1. Go to: File > Preferences > Keyboard Shortcuts

  2. At the top of the page you will see a message that says: For advanced customizations open and edit keybindings.json

Click on link

  1. This opens two panes: the default keybindings, and your custom bindings.

Enter code in right pane

  1. Enter the code provided by @kamp

Solution 6 - Typescript

Other way is to open keybindings.json file and add your desired key combination. In my case it's:

{
    "key": "cmd+shift+l",
    "command": "editor.action.insertSnippet",
    "when": "editorTextFocus",
    "args": {
      "snippet": "console.log($1)$0;"
    }
}

Solution 7 - Typescript

Anyone looking for For advanced customizations open and edit keybindings.json

enter image description here

Click this little icon to open keybindings.json.

Use this code for generate both console.log() & to generate console.log("Word") for selected text.

{
  "key": "ctrl+shift+l",
  "command": "editor.action.insertSnippet",
  "when": "editorTextFocus",
  "args": {
    "snippet": "console.log('${TM_SELECTED_TEXT}$1')$2;"
  }
}

Solution 8 - Typescript

When you type the word log, you will see something like this:

Choosing the method that says Log to the console

Choose the one which says Log to the console in case you see different log options (that would basically be possible when you have some identifier with the name log.

Click Enter.

console.log() typed automatically!

The intellisense will do its job!

Solution 9 - Typescript

clg + tab

or as mentioned above,

log + enter (second option in dropdown)

This is an old question, but I hope is useful to some one else.

Solution 10 - Typescript

In case anybody is interested in putting the currently selected text into the console.log() statement:

{
    "key": "cmd+shift+l",
    "command": "editor.action.insertSnippet",
    "when": "editorTextFocus",
    "args": {
      "snippet": "console.log(${TM_SELECTED_TEXT}$1)$0;"
    }
}

Solution 11 - Typescript

Type 'clg' then hit ctrl + space and hit enter, it will auto complete to console.log().
For this you only need to install an extension i.e. JavaScript (ES6) code snippets.

Solution 12 - Typescript

I don't know what extension I'm using but I simply type log and hit tab to autocomplete console.log(); placing the cursor between the braces.

Solution 13 - Typescript

Printing the value of a variable is very simple, but also something very repeatedly & frequently needed and done, so it necessitates the quickest of the shortcuts!

So I recommend another solution in which you don't even need to select anything. You also neither need to copy/paste the variable's name, nor need to type in a snippet's prefix. And it works for all languages too, with only a single hotkey! :) (thanks to the vscode's "when" expressions)

  • Here's a preview of how it works in action:

enter image description here

  • Here are the steps you have to take to install it:

    1. Install the multi-command extension from the extension store.

    2. Open the settings.json file of your vscode (in case you don't know how, hit Ctrl + Shift + p. This will open up a command palette at the top. Write "Preferences: Open Settings (JSON)" in it, and hit enter!) then add the below item to it (will be explained):

  // generating a print statement of the current word on the next line, in different languages
  "multiCommand.commands": [
    {
      "command": "multiCommand.jsGeneratePrint",
      "sequence": [
        "editor.action.addSelectionToNextFindMatch",
        "editor.action.clipboardCopyAction",
        "editor.action.insertLineAfter",
        {
          "command": "editor.action.insertSnippet",
          "args": {
            "snippet": "console.log(\"$CLIPBOARD: \", $CLIPBOARD);"
          }
        },
      ]
    },
    {
      "command": "multiCommand.javaGeneratePrint",
      "sequence": [
        "editor.action.addSelectionToNextFindMatch",
        "editor.action.clipboardCopyAction",
        "editor.action.insertLineAfter",
        {
          "command": "editor.action.insertSnippet",
          "args": {
            "snippet": "System.out.println(\"$CLIPBOARD: \" + $CLIPBOARD);"
          }
        },
      ]
    },
  ],
  1. Now open the keybindings.json file (Write this in the command palette: "Preferences: Open keyboard Shortcuts (JSON)") and add the below items to it (will be explained):
    {
        "key": "ctrl+b",
        "command": "multiCommand.jsGeneratePrint",
        "when": "editorTextFocus && editorLangId == javascript"
    },
    {
        "key": "ctrl+b",
        "command": "multiCommand.javaGeneratePrint",
        "when": "editorTextFocus && editorLangId == 'java'"
    }

And voila!, we're done. Now, just put the pointer on a variable's name and hit the ctrl+b (I'm comfortable with ctrl+b, but you can change it as you prefer).

  • Here's how it works (for the curious) :
    • The first snippet above: We created a "compound command" (thanks to the "multi-command" extension) which simply means a "sequence of multiple commands together as a new command". The sequence we have used is: 1. Select the current word which the pointer is at, 2. copy it to the clipboard, 3. go to the next line, 4. generate the print statement using the word already copied to the clipboard. and Voila! NOTICE however that we have to define one of these compound commands per each language, as different programming languages differ in how they print!
    • The second snippet above: We create "two different hotkeys, but with the same key combinations". Most importantly they're different in their "where" conditions(in which we have specified the language of the code "where" this hotkey must work in), and then we add each of the compound commands to its own hotkey.

You can extend this method to cover any other languages as well, by just repeating the same pattern (It can also be extended in other ways, but I won't make this answer any longer). Hope that'll save you some time. :)

Solution 14 - Typescript

Here's a better solution

{
        "key": "cmd+shift+c",
        "command": "editor.action.insertSnippet",
        "when": "editorTextFocus",
        "args": {
            "snippet": "console.log('${TM_SELECTED_TEXT}', $TM_SELECTED_TEXT$1);"
        }
    }

Solution 15 - Typescript

BEST COMBO

I learned the first feature of Turbo Console Log (II, III, IV were not useful for me).

Then added this snippet, that is perfectly fitting to the Turbo Console Log:

  {
    "key": "ctrl+alt+l",
    "command": "editor.action.insertSnippet",
    "when": "editorTextFocus && !editorHasSelection",
    "args": {
      "snippet": "console.log('$1')"
    }
  }

Solution 16 - Typescript

Make your own snippets in 3 easy steps.

  1. Select Configure User Snippets from the Command Palette (Ctrl + Shift + P)

    configure snippets

  2. Select Global Snippet or Snippets for <your-project>

select where to save snippets

  1. Edit the file, Save and Profit! 螺
{
  "consoleLog": {
    "prefix": "clg",
    "body": "console.log(${1:object});",
    "description": "Displays a message in the console"
  },
}

Solution 17 - Typescript

The below one is currently selected text with single quotes. Hope it helps

// Place your key bindings in this file to overwrite the defaults
[{
    "key": "ctrl+shift+c",
    "command": "editor.action.insertSnippet",
    "when": "editorTextFocus",
    "args": {
        "snippet": "console.log('${TM_SELECTED_TEXT}$1')$2;"
    }

}]

Solution 18 - Typescript

Install ES7 React/Redux/GraphQL extension and then type clg + Enter/Return key for console.log()

enter image description here

Solution 19 - Typescript

As an alternative you can create a function easy to write that invokes the console.log and then just call that function.

 var a = funtion (x) {console.log(x)}
 a(2*2);        //prints 4

Solution 20 - Typescript

I use autohotkey to achieve the same effect, Simply type "cc" then space, and it will output a console log. Haven't tried snippets, not sure how this compares

; vscode
#IfWinActive ahk_exe Code.exe

	SetTitleMatchMode 2

	; Move by word - Backwards
	Capslock & d:: Send ^+k
	::cc::console.log("test321:" {+}){left}
	::cl::logger.info("test321:" {+}){left}
	::cd::logger.debug("test321:" {+}){left}
	::ss::JSON.stringify(test, null, 2){ctrl down}{left 3}{ctrl up}

#IfWinActive 

Solution 21 - Typescript

Another alternative, if you're using VSCode, is to use the Turbo Console Log extension which not only enables the Shortcut, but also smartly inserts custom text depending on your selected text. You can adjust it's settings to also log the file name/line number:

GIF Showing functionality

Obviously, installing an extension is not the same as changing keyboard shortcuts, but it's a good option if you want functionality similar to @aderchox 's Answer

Solution 22 - Typescript

The fastest way is:

Press 'l' and select log in pop-up list

console.log shortcut visual studio code

Now, always when you press 'l', you just need to press 'Enter' to console.log()

console.log shortcut visual studio code

Solution 23 - Typescript

Type co and hit tab or enter.

Should work out of the box.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionPetko KamenovView Question on Stackoverflow
Solution 1 - TypescriptSebastian SebaldView Answer on Stackoverflow
Solution 2 - TypescriptSabunkar Tejas SahaileshView Answer on Stackoverflow
Solution 3 - TypescriptnedemirView Answer on Stackoverflow
Solution 4 - TypescriptChrisView Answer on Stackoverflow
Solution 5 - TypescriptAdrian SmithView Answer on Stackoverflow
Solution 6 - TypescriptkampView Answer on Stackoverflow
Solution 7 - TypescriptHiran D.A WalawageView Answer on Stackoverflow
Solution 8 - TypescriptSrishtiView Answer on Stackoverflow
Solution 9 - TypescriptpalmaoneView Answer on Stackoverflow
Solution 10 - TypescriptmedoingthingsView Answer on Stackoverflow
Solution 11 - TypescriptWaleed ShahzaibView Answer on Stackoverflow
Solution 12 - Typescriptuser9895412View Answer on Stackoverflow
Solution 13 - TypescriptaderchoxView Answer on Stackoverflow
Solution 14 - TypescriptParam SinghView Answer on Stackoverflow
Solution 15 - TypescriptChromeKKView Answer on Stackoverflow
Solution 16 - TypescriptGianfranco P.View Answer on Stackoverflow
Solution 17 - TypescriptRagavan RajanView Answer on Stackoverflow
Solution 18 - TypescriptSandeep AmarnathView Answer on Stackoverflow
Solution 19 - TypescriptzazadadaView Answer on Stackoverflow
Solution 20 - TypescripttinkerView Answer on Stackoverflow
Solution 21 - TypescriptPlooftechView Answer on Stackoverflow
Solution 22 - TypescriptGrégori Fernandes de LimaView Answer on Stackoverflow
Solution 23 - TypescriptMarek WView Answer on Stackoverflow