Interactive Python for keyboard interruption in Visual Studio IDE

If I execute a command interactively in python in Visual Studio using the Python Tools for Visual Studio IDE, I would like to be able to interrupt this command with a set of keystrokes, such as CTRL + C, as in MATLAB.

PTVS docs does not mention anything interactively . Google searches turned out to be empty.

+4
source share
1 answer

To interrupt the execution of a Python script in an interactive Visual Studio window, you must use the Reset button . This is a designed way to reset your environment and clear the associated memory of the environment.

0
source

Source: https://habr.com/ru/post/1669749/


All Articles