DeveloperBreeze

Visual Studio Code Development Tutorials, Guides & Insights

Unlock 3+ expert-curated visual studio code tutorials, real-world code snippets, and modern dev strategies. From fundamentals to advanced topics, boost your visual studio code skills on DeveloperBreeze.

Tutorial
javascript

Installing a Code Editor (e.g., VS Code)

     node test.js
  • Sublime Text: Lightweight and fast.
  • Atom: Customizable and open-source.
  • WebStorm: Paid but feature-rich, ideal for large projects.

Dec 10, 2024
Read More
Tutorial
javascript typescript

Building a Custom VS Code Extension: Supercharge Your Workflow

The package.json file is where you define your extension's metadata, including commands. Update it to include your new command:

{
  "name": "my-vscode-extension",
  "displayName": "My VS Code Extension",
  "description": "A custom VS Code extension to supercharge your workflow.",
  "version": "0.0.1",
  "engines": {
    "vscode": "^1.50.0"
  },
  "categories": [
    "Other"
  ],
  "activationEvents": [
    "onCommand:extension.showHelloWorld"
  ],
  "main": "./out/extension.js",
  "contributes": {
    "commands": [
      {
        "command": "extension.showHelloWorld",
        "title": "Show Hello World"
      }
    ]
  },
  "scripts": {
    "vscode:prepublish": "npm run compile",
    "compile": "tsc -p ./",
    "watch": "tsc -watch -p ./",
    "pretest": "npm run compile && npm run lint",
    "lint": "eslint src --ext ts",
    "test": "node ./out/test/runTest.js"
  },
  "devDependencies": {
    "@types/glob": "^7.1.1",
    "@types/mocha": "^8.0.4",
    "@types/node": "^14.14.6",
    "@typescript-eslint/eslint-plugin": "^4.4.1",
    "@typescript-eslint/parser": "^4.4.1",
    "eslint": "^7.11.0",
    "glob": "^7.1.6",
    "mocha": "^8.2.1",
    "typescript": "^4.0.5",
    "vscode-test": "^1.4.0"
  }
}

Aug 20, 2024
Read More
Tutorial
python

Enhancing Productivity with Custom Keyboard Shortcuts in Your IDE

  • Windows/Linux: Ctrl + Shift + P to open the Command Palette, then search for Preferences: Key Bindings.
  • Mac: Cmd + Shift + P, then search for Preferences: Key Bindings.

This opens two files: the default key bindings and user key bindings.

Aug 20, 2024
Read More