The default settings are hardcoded in the vscode sources. To see all settings in read-only format:
Ctrl+Shift+P: type open default settings (choose Preferences: Open Default Settings (JSON))
- socks5 proxy format:
socks5://127.0.0.1:1080
- Turn inline suggestions on/off with Alt+\
"editor.inlineSuggest.enabled": false,- Under File, Preferences, Keyboard Shortcuts, search for
inlinesuggestand set the hotkey foreditor.action.inlineSuggest.trigger - https://stackoverflow.com/questions/71224911/can-github-copilot-stop-auto-suggesting-instead-be-triggered-by-a-keystroke/71224912#71224912
- https://dev.to/ismaellopezdev/customize-titlebar-in-vs-code-5hie
- 👉 Change workspace color: https://marketplace.visualstudio.com/items?itemName=johnpapa.vscode-peacock
Ctrl+Shift+P: type open settings (choose Preferences:Open User Settings (JSON))
# Root name first
"window.title": "${dirty}${rootName}${separator}${activeEditorShort}${separator}${profileName}${separator}${appName}"To view default value and substitute variables descriptions open default settings.
- https://marketplace.visualstudio.com/items?itemName=mhutchie.git-graph
- https://marketplace.visualstudio.com/items?itemName=eamodio.gitlens
- editor.formatOnPaste does too much (also auto-formats pasted code)
- Use this: https://marketplace.visualstudio.com/items?itemName=Rubymaniac.vscode-paste-and-indent
- Hints
- to open
keybindings.jsongo toFile>Preferences>Keyboard Shortcutsand then click a button in the tab-bar (top right corner) - Ctrl+Shift+P: type
open settings(choose Preferences:Open User Settings (JSON))
- to open
keybindings.json
{
"key": "ctrl+shift+v",
"command": "extension.paste-and-indent",
"when": "editorTextFocus && !editorReadonly"
}settings.json (doesn't work)
{
"pasteAndIndent.selectAfter": true
}