Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python Interactive Window Font

Is it possible to change the font family shown in the new python interactive window that is produced when using the Python extension in VSCode?

like image 786
Jordan H Avatar asked Nov 14 '18 21:11

Jordan H


People also ask

How do I run an interactive window in Python?

Open an Interactive window First, switch to the Python Environments window (View > Other Windows > Python Environments or Ctrl+K > Ctrl+`) and select the Open Interactive Window command or button for a chosen environment.

What hotkey do you use to send your code to the Python interactive window?

Shift + Enter is registered as a keyboard shortcut for both sending code to Terminal and for sending it to Python Interactive. I can run stuff in Python Interactive by right clicking and selecting "Run current file in python interactive window".


1 Answers

Currently, the only way to achieve this is by zooming in or out the entire VS Code window with View -> Appearance -> Zoom In/Zoom Out or use the Cmd + + or Cmd + - shortcuts (CTRL instead of Cmd on Windows). Do that until you get the desirable font size on the Python Interactive window.

Of course zooming in or out will change the Python interactive window and the editor font size, but you can go to Settings and increase or decrease the font size of the editor until it becomes around same size as the Python Interactive window font size.

like image 79
universality Avatar answered Oct 06 '22 00:10

universality