Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Super Console Log FlashNew to Visual Studio Code? Get it now.
Super Console Log Flash

Super Console Log Flash

popudev

|
537 installs
| (1) | Free
This extension provides a quick and convenient way to insert console log statements in various programming languages.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Super Console Log

This extension provides a quick and convenient way to insert console log statements in various programming languages.

Made by Popudev

Features

  • Automatically detects the programming language of the active file.
  • Inserts console log statements tailored to the detected language.
  • Support multiple cursor selection
  • Supports JavaScript, Java, Rust, C++, and more.

Usage

Keybinding

  • Windows: Control + Shift + Z
  • Mac: Command + Shift + Z
  1. Open a file in Visual Studio Code.
  2. Place the cursor at the desired location in your code.
  3. Press Control + Shift + Z or Command + Shift + Z

Command palette

  1. Open a file in Visual Studio Code.
  2. Place the cursor at the desired location in your code.
  3. Press Ctrl + Shift + P to open the command palette.
  4. Type "Super Console Log Flash" and select the "Log" command.

Demo

  1. Variable Preview

  2. Properties Preview

  3. Multiple cursor selection Preview

Supported Languages

  • JavaScript
  • Rust
  • Java
  • C++
  • More

Extension Settings

  • To customize the console log pattern

Using the settings.json file in the Project

  1. Create a .vscode folder in your project if it doesn't exist.
  2. Inside the .vscode folder, create a file named settings.json if it doesn't exist.
  3. Open the settings.json file and add the following configuration.

Below is an example of how you can define custom patterns for different programming languages:

{
  "super-console-log-flash": {
    "pattern": {
      "javascript": "console.log(\"custom @name: \", @value);",
      "rust": "println!(\"@name: {:?}\", @value);",
      "python": "print(\"@name:\", @value)"
    }
  }
}

Using the Setting UI

Contribution

If you have any ideas, suggestions, or issues, feel free to contribute or open an issue on GitHub.

License

This extension is licensed under the MIT License.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft