3.11 Issues

Copilot Bug

Issue: Copilot suddenly suggests new edit, and cannot close Diff Editor.

The cell output

  • not distinguishable from the code input
  • text has a dark grey background color, which is hard to read.

vs code jupyter

You can customize your active Visual Studio Code color theme with the workbench.colorCustomizations and  editor.tokenColorCustomizations user setting. E.g.,

"workbench.colorCustomizations": {
    "editor.foreground": "#ffffff"
},

workbench.colorCustomizations allows you to set the colors of VS Code UI elements such as list & trees (File Explorer, suggestions widget), diff editor, Activity Bar, notifications, scroll bar, split view, buttons, and more.

editor.tokenColorCustomizations allows you to set the colors of syntax highlighting in the source code editor, such as text, comments, keywords, strings, numbers, and more.

Developer Tools

Command Palette → type “Developer: Toggle Developer Tools”, this will open the Developer Tools window. It is useful for

  • styling the VS Code UI, such as changing the colors of the text and background in the editor, or customizing the colors of the Jupyter notebook cells.
  • debugging issues with VS Code, such as checking for errors in the console