skip to Main Content

this is my problem. Every time I run python manage.py runserver this happens. How can I make to where I don’t have to reset my VSC every time I want access to the terminal again?

I did try to control break but my laptop keyboard doesn’t include the break button. I tried FN+CTRL+B, CTRL+B, and FN+CTRL+F11. None worked.

3

Answers


  1. From toolbar you can click Terminal > New Terminal – then you can switch between your sessions

    Login or Signup to reply.
  2. To access the BREAK key, you can use the on screen keyboard (search for osk).

    Also, you should be able to use ctrl+c to stop Django (will interrupt a running program in the terminal for most programs). You can test this by pressing ctrl+c at the terminal and check if ^C shows up or is the text copied.

    Login or Signup to reply.
  3. The terminal in vscode can be created multiply.

    Click as the following picture so that you can operate in another cmd.

    enter image description here

    And generally we just use Ctrl+C for killing command line statements nowadays.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search