How to stop python debugging in vim

This is my first time I am editing python code in vim equipped with a python plugin. After setting the breakpoints, I use the "\ r" command to run it. Then it continues to remain after printing "[pymode] code running ...". I am trying somehow, but still cannot give up debug. He just has no answer no matter what I do.

+4
source share
2 answers

According to the official debugger commands (from here ):

[usage:] dbg command [options]
- quit    :: exit the debugger
- run     :: continue execution until a breakpoint is reached or the program ends
         default shortcut: \r
- stop    :: exit the debugger
- over    :: step over next function call
         default shortcut: \o
- watch   :: execute watch functions
         default shortcut: \w
- up      :: go up the stack
         default shortcut: \u
- here    :: continue execution until the cursor (tmp breakpoint)
         default shortcut: \h
- down    :: go down the stack
         default shortcut: \d
- exit    :: exit the debugger
- eval    :: eval some code
- break   :: set a breakpoint
         default shortcut: \b
- into    :: step into next function call
         default shortcut: \i
- out     :: step out of current function call
         default shortcut: \t
+2
source

:! python3%, : PymodeRun keybinding <leader>r. , , .

0

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


All Articles