Skip to content

Latest commit

 

History

History
74 lines (62 loc) · 3.91 KB

File metadata and controls

74 lines (62 loc) · 3.91 KB

VS Code Web Extension Powerpack

EditorConfig logo Output Colorizer logo Statusbar Commands logo Sort lines logo npm Intellisense logo

Code Outline logo Bookmarks logo ESLint logo

Description

This extension pack packages powerful web development extensions for Visual Studio Code.

Extensions Included

Optional - Back/Forward buttons in statusbar

Back/Forward buttons demo

If you'd like to add back/forward buttons to your statusbar add the following to your User Settings:

"statusbar_command.commands": [
  {
    "text": "$(arrow-right)",
    "tooltip": "Navigate forward",
    "alignment": "right",
    "command": "workbench.action.navigateForward"
  },
  {
    "text": "$(arrow-left)",
    "tooltip": "Navigate back",
    "alignment": "right",
    "command": "workbench.action.navigateBack"
  }
]

Want to see your extension added?

Open a PR and I'd be happy to take a look.

Enjoy!