Workspaces: Duplicate Workspace in New Window
option. Source. Tip: Use dupl as filter to get that option faster."terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe"
to settings.json.fn+f12
- Go to Definition (mostly useful)fn+shift+f12
- Go to Referencesfn+ctrl+f12
- Go to implementationsfn+rightCtrl
- Show right click menu (Awesome)f8
to cycle through errorsctrl+k ctrl+i
replicate mouse over for e.g., to see an errorctrl+alt+rightArrow
and ctrl+alt+leftArrow
to move a tab from one of two split editors to anotherctrl+alt+j
to open Join collaboration link text input
Check this setting in vscode: workbench.externalBrowser
1 / n
2 / n
3 / n
I am selecting my project from google
4 / n
5 / n
settings.json
"eslint.options": {
"overrideConfig": {
"rules": {
"no-multiple-empty-lines": ["error", { "max": 1, "maxBOF": 0, "maxEOF": 0 }],
}
}
}
ctrl+enter
in Pallete to open file with Open to the Side
feature. This always open the file in the right column of the currently active column.ctrl+g g
for switching git section in vscode.ctrl+1
to switch from any left bar menu (search/git/etc) to code editor.ctrl shift -
to go forward in history (shift means uppercase i.e., move forward in time)ctrl alt -
to go backward in history (move backward in time)alt+k s
to open VS Code keybindingsSome more information on above above keybindings:
1. (default from vscode)
2. (default from vscode)
3. (default from vscode)
4. (default from vscode) { "key": "ctrl+shift+-", "command": "workbench.action.navigateForward", "when": "canNavigateForward" }
5. (default from vscode) { "key": "ctrl+alt+-", "command": "workbench.action.navigateBack", "when": "canNavigateBack" }
6. (my custom keybinding)
Navigate Errors fastly ❤️ ❤️:
You need to hover that area on the bottom of vscode where the branch-name is shown like that-
Git Delete Branch
to delete branchWhy? Because it is more handy than to type branch’s name in the terminal ♡ 💜
Autolinks
feature of git-lensSuperawesome video: Click here
It is so awesome like that as you can see diff in vscode itself with that!
I added a new shortcut.
Source: Click here
Below worked awesomely for me:
Source: Click here
// For example the following text would act as link in vscode: file://./scripts/deployKryptoBird.js
Consider using a .vscode/tasks.json
file (you can autogenerate this file with vscode very easily). I personally use ctrl+alt+r
keybinding to launch run tasks, yo!!
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
// "command": "pwd", // for testing.
"command": "./fso-part13/curls/post_note.sh",
"label": "post a note ~Sahil"
},
{
"type": "shell",
"command": "./fso-part13/curls/get_a_note.sh",
"label": "Get a note ~Sahil"
},
{
"type": "shell",
"command": "./fso-part13/curls/resetNotes.sh",
"label": "Reset notes table! ~Sahil"
}
]
}
Install All my Extensions: Click here
ramiroberrelleza.bitbucket-pull-requests
Press ctrl+r
and choose from recent projects:
or you can do it like that: