Using Vscode in General

Switching between Light and Dark Themes

  1. Open the Command Palette with CTRL + SHIFT + P
  2. Type “Color Theme”.
  3. Select Preferences: Color Theme from the dropdown.
  4. Choose a color theme, typically the Dark modern or Light modern.

Color Theme Dropdown

Color Theme Dropdown

The “Do you trust the authors” popup

When entering a new project, you always get the following popup:

Do you trust popup

To use SuperBOL Studio extension, you need to reply “Yes, I trust the authors”.

If you reply “No, I don’t trust the authors”, Vscode enters a Restricted Mode, where:

  • Extensions are disabled: Most extensions that actually do things (like debuggers, linters, or language servers for Python/C++) will be turned off. This prevents a malicious workspace from using an extension to run a script in the background.

  • Tasks are blocked: Any automation you’ve set up in .vscode/tasks.json (like your make command for Pandoc) will be disabled. VS Code won’t run them because it doesn’t know if the command is safe.

  • Debugging is disabled: You cannot launch the debugger, as this requires executing the code in the workspace.

  • Workspace Settings are ignored: Some settings defined specifically for that folder (in .vscode/settings.json) will be overridden by your global user settings to prevent the folder from “hijacking” your editor’s behavior.

If you replied “No”, you will see a “Restricted Mode” button in the bottom left corner, click on it and select the “Trust” box to change it.

Color Theme Dropdown