No debugging actions upon session start
See original GitHub issueUpon starting debugging I am unable to run any of the commands in navigating the debugging screens. (Run, step_ver, step_into etc…). The debugging stops at the breakpoint and it’s unable to continue by any means.
Using the command Xdebug: Session execute - to execute xdebug_continue the debugging process ends.
With the current configuration, I have tried with NetBeans and the debugging works correctly.
I am not sure if the configuration is the issue or plugin issue. Please if possible advice.
P.S. The path mapping is being used since if I map the same folder even though is local http server, I do not trigger debugging, the folder is a symlink to the one within the nginx shared folder. (usr/share/nginx/html/patterns/)

Environment
Sublime Text
Operating system: Linux - 4.19.24-1-MANJARO Installed version/build: 3.1.1 Python version: 3.7.3
Server
Operating system: local server, same as sublime text environment (using nginx as web server).
Are you trying to debug the script remotely or locally? - locally
PHP/Xdebug version: v2.7.0RC2
Configuration
php.ini/xdebug.ini
zend_extension=/usr/lib/php/modules/xdebug.so
xdebug.remote_enable=on
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9002
xdebug.remote_handler=dbgp
xdebug.remote_mode = req
xdebug.remote_autostart = 1
xdebug.remote_connect_back = 1
xdebug.idekey = sublime.xdebug
xdebug.remote_log = /home/dippy/logs/php/xdebug.log
xdebug.profiler_enable = on
xdebug.profiler_enable_trigger = on
Packages/User/Xdebug.sublime-settings
{
    "path_mapping": {
        "/usr/share/nginx/html/patterns" : "/home/dippy/Tutorials/patterns",
        "url": "http://dev.patterns.com/",
        "port": 9002,
        "super_globals": false,
    },
}
Issue Analytics
- State:
 - Created 5 years ago
 - Comments:15 (1 by maintainers)
 

Top Related StackOverflow Question
I encountered the same issue and the fork provided by @gepeixoto worked for me
@Daniel-Yonkov, Python 2.7.12
However, I think it doesn’t matter. (Sublime is running locally and Xdebug remotely.) I have Docker containers running without Python where these settings work.
I usually advise the folks of my team to use my fork of this repository and then it works:
cmd+shift+p> “Package Control: Remove Package Xdebug Client”Then:
& Sublime restart …