Skip to content

Latest commit

 

History

History
52 lines (42 loc) · 2.26 KB

File metadata and controls

52 lines (42 loc) · 2.26 KB

Default settings

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))

Proxy

  • socks5 proxy format: socks5://127.0.0.1:1080

AI

Title bar

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.

Extensions

Indent on pasting

keybindings.json

    {
        "key": "ctrl+shift+v",
        "command": "extension.paste-and-indent",
        "when": "editorTextFocus && !editorReadonly"
    }

settings.json (doesn't work)

{
    "pasteAndIndent.selectAfter": true
}