How to do tag wrapping in VS code?

Embedded Emmet could do the trick: Select text (optional) Open command palette (usually Ctrl+Shift+P) Execute Emmet: Wrap with Abbreviation Enter a tag div (or an abbreviation .wrapper>p) Hit Enter Command can be assigned to a keybinding. This thing even supports passing arguments: { “key”: “ctrl+shift+9”, “command”: “editor.emmet.action.wrapWithAbbreviation”, “when”: “editorHasSelection”, “args”: { “abbreviation”: “span”, }, }, … Read more

How can I view the Git history in Visual Studio Code?

I recommend you this repository, https://github.com/DonJayamanne/gitHistoryVSCode Git History It does exactly what you need and has these features: View the details of a commit, such as author name, email, date, committer name, email, date and comments. View a previous copy of the file or compare it against the local workspace version or a previous version. … Read more

Hide .js.map files in Visual Studio Code: File Nesting

In your settings (either user or workspace) there is a setting that you can tweak to hide anything you’d like: { “files.exclude”: { “**/.git”: true, “**/.DS_Store”: true } } So you can add in the following to hide .js and .js.map files “**/*.js”: true, “**/*.js.map”: true As this other answer explains, most people probably only … Read more