This extension pack packages powerful web development extensions for Visual Studio Code.
- EditorConfig - EditorConfig Support for Visual Studio Code.
- Bookmarks - Mark lines and jump to them.
- Output Colorizer - Syntax highlighting for log files.
- Statusbar Commands - Extend the statusbar with custom commands - specifically forward/back buttons.
- Sort lines - Sorts lines of text.
- ESLint - Integrates ESLint into VS Code.
- npm Intellisense - Visual Studio Code plugin that autocompletes npm modules in import statements.
- Code Outline - A code outline tree provider for VSCode.
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"
}
]
Open a PR and I'd be happy to take a look.
Enjoy!