I use vim + xdebug to debug php. If the debug operation waste a long time, vim will lost the connection with xdebug, and I have to restart the debug by press F5 and do it from the first step again. So how can I set a longer time for the debug procedure?
Share
The 5 second timeout is hard-coded in debugger.py. You can increase it by modifying the following line:
In my plugin version, that happens to be line 556 of debugger.py. If your differs, just search in Vim for
5orsecond.Update:
Also found it at line 666