我试图在VIM中使用Vdebug进行调试。 Vdebug与Vundle一起安装,每当我尝试打开连接时,这就是我得到的:
Waiting for a connection (Ctrl-C to cancel, this message will self-destruct in 20 seconds...)
Connection to the debugger has been closed
它甚至不会等待任何秒数。
知道这里发生了什么吗?
更新
我已经解决了这个问题。我用FPM运行PHP,它使用与xdebug相同的端口(9000)。在php.ini中设置xdebug.remote_port=10000
然后在ViM中设置Vdebug端口选项:let g:vdebug_options['port']=10000
为我修复了这个问题。现在我可以调试了!