Visual Studio Code – Workspace Color Themes and Keyboard Bindings

Don't open last folder

Refer: https://blog.mruckman.com/2019/09/visual-studio-code-dont-open-last-folder/

For your workspace

mkdir .vscode

Copy this file there

settings.json

{
    "cSpell.words": [],
    "editor.fontSize": 13,
    "window.zoomLevel": 1.2,
    "files.trimTrailingWhitespace": true,
    "workbench.colorTheme": "Monokai"
}

Update keyboard bindings

File, Preferences, Keyboard Shortcuts

Triple dot, upper right hand corner, Show User Keybindings

Then upper right hand corner, "Open Keyboard Shortcuts

Here's the current keybindings.txt

Refer: https://stackoverflow.com/questions/71225580/move-to-the-next-line-when-commenting-a-line-in-vs-code

Visual Studio Code Missing Underline Character

Easier solution is to just set the terminal font to monospace
Refer: https://github.com/microsoft/vscode/issues/35901

Refer: https://github.com/microsoft/vscode/issues/35901

The underscore or underline character is missing in Visual Studio Code terminal.  I changed the fonts to match Sublime and the font was too small.

{
    "terminal.integrated.fontFamily": "Monospace",
    "terminal.integrated.fontSize": 15,
    "python.pythonPath": "/usr/bin/python",
    "python.linting.pylintEnabled": true,
    "python.linting.enabled": true
}