René's URL Explorer Experiment


Title: Vim hangs up connection without stopping on breaking point · Issue #509 · vim-vdebug/vdebug · GitHub

Open Graph Title: Vim hangs up connection without stopping on breaking point · Issue #509 · vim-vdebug/vdebug

X Title: Vim hangs up connection without stopping on breaking point · Issue #509 · vim-vdebug/vdebug

Description: Hi, I've recently encountered with an vdebug issue, when the debugger attempts to listen to requests, but when hitting an http request to the web server, vdebug seems to disconnect and ignore the break point at all. I'm using PHP 7.4 wit...

Open Graph Description: Hi, I've recently encountered with an vdebug issue, when the debugger attempts to listen to requests, but when hitting an http request to the web server, vdebug seems to disconnect and ignore the b...

X Description: Hi, I've recently encountered with an vdebug issue, when the debugger attempts to listen to requests, but when hitting an http request to the web server, vdebug seems to disconnect and ignore t...

Opengraph URL: https://github.com/vim-vdebug/vdebug/issues/509

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Vim hangs up connection without stopping on breaking point","articleBody":"Hi,\r\nI've recently encountered with an vdebug issue, when the debugger attempts to listen to requests, but when hitting an http request to the web server, vdebug seems to disconnect and ignore the break point at all. I'm using PHP 7.4 with Xdebug 3.0.4 and docker and SpaceVIm + Vim 8.2 above.\r\nMy configurations are as follows: \r\n\r\nvdebug:\r\n```\r\n let g:vdebug_options = {\r\n       \\ 'server': '172.18.0.1',\r\n       \\ 'port': 9001,\r\n       \\ 'break_on_open': 0,\r\n       \\ 'continuous_mode': 0,\r\n       \\ 'debug_file_level': 8,\r\n       \\ 'debug_file': '~/vdebug.log',\r\n       \\ 'on_close': 'detach',\r\n       \\ 'path_maps': {\r\n       \\ '/var/www/html': 'some_correct_path'\r\n       \\}\r\n       \\}\r\n\r\n```\r\n\r\nxdebug.ini:\r\n```\r\nxdebug.mode=debug\r\nxdebug.start_with_request=yes\r\nxdebug.remote_autostart=on\r\nxdebug.remote_enable=on\r\nxdebug.remote_handler=\"dbgp\"\r\nxdebug.client_host=172.18.0.1\r\nxdebug.client_port=9001\r\n\r\n```\r\n\r\nI'm attaching screen shoot to illustrate the problem:\r\n![Screenshot from 2021-09-22 11-07-24](https://user-images.githubusercontent.com/6097007/134306370-79986a52-091a-462e-a440-6e778be1be32.png)\r\n\r\nAs you can see all info tabs are empty as well. \r\n\r\nFinally, that's what logs output:\r\n```\r\n- [Debug] {Wed 22 2021 11:17:19} keymapper: reload_keys\r\n- [Info] {Wed 22 2021 11:17:19} Found connection from ('172.18.0.8', 50722)\r\n- [Debug] {Wed 22 2021 11:17:19} Command: context_names -i 1\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"context_names\" transaction_id=\"1\"\u003e\u003ccontext name=\"Locals\" id=\"0\"\u003e\u003c/context\u003e\u003ccontext name=\"Superglobals\" id=\"1\"\u003e\u003c/context\u003e\u003ccontext name=\"User defined constants\" id=\"2\"\u003e\u003c/context\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Available context names: {0: 'Locals', 1: 'Superglobals', 2: 'User defined constants'}\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_get -i 2 -n language_supports_threads\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_get\" transaction_id=\"2\" feature_name=\"language_supports_threads\" supported=\"1\"\u003e\u003c![CDATA[0]]\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Must Feature: language_supports_threads = 0\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_get -i 3 -n language_name\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_get\" transaction_id=\"3\" feature_name=\"language_name\" supported=\"1\"\u003e\u003c![CDATA[PHP]]\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Must Feature: language_name = PHP\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_get -i 4 -n language_version\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_get\" transaction_id=\"4\" feature_name=\"language_version\" supported=\"1\"\u003e\u003c![CDATA[7.4.12]]\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Must Feature: language_version = 7.4.12\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_get -i 5 -n encoding\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_get\" transaction_id=\"5\" feature_name=\"encoding\" supported=\"1\"\u003e\u003c![CDATA[iso-8859-1]]\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Must Feature: encoding = iso-8859-1\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_get -i 6 -n protocol_version\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_get\" transaction_id=\"6\" feature_name=\"protocol_version\" supported=\"1\"\u003e\u003c![CDATA[1.0]]\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Must Feature: protocol_version = 1.0\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_get -i 7 -n supports_async\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_get\" transaction_id=\"7\" feature_name=\"supports_async\" supported=\"1\"\u003e\u003c![CDATA[0]]\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Must Feature: supports_async = 0\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_get -i 8 -n data_encoding\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_get\" transaction_id=\"8\" feature_name=\"data_encoding\" supported=\"0\"\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Must Feature: data_encoding = * Feature not supported *\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_get -i 9 -n breakpoint_languages\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_get\" transaction_id=\"9\" feature_name=\"breakpoint_languages\" supported=\"0\"\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Must Feature: breakpoint_languages = * Feature not supported *\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_get -i 10 -n breakpoint_types\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_get\" transaction_id=\"10\" feature_name=\"breakpoint_types\" supported=\"1\"\u003e\u003c![CDATA[line conditional call return exception]]\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Must Feature: breakpoint_types = line conditional call return exception\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_get -i 11 -n resolved_breakpoints\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_get\" transaction_id=\"11\" feature_name=\"resolved_breakpoints\" supported=\"1\"\u003e\u003c![CDATA[0]]\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Must Feature: resolved_breakpoints = 0\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_get -i 12 -n multiple_sessions\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_get\" transaction_id=\"12\" feature_name=\"multiple_sessions\" supported=\"0\"\u003e\u003c![CDATA[0]]\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Must Feature: multiple_sessions = * Feature not supported *\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_get -i 13 -n max_children\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_get\" transaction_id=\"13\" feature_name=\"max_children\" supported=\"1\"\u003e\u003c![CDATA[32]]\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Must Feature: max_children = 32\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_get -i 14 -n max_data\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_get\" transaction_id=\"14\" feature_name=\"max_data\" supported=\"1\"\u003e\u003c![CDATA[1024]]\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Must Feature: max_data = 1024\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_get -i 15 -n max_depth\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_get\" transaction_id=\"15\" feature_name=\"max_depth\" supported=\"1\"\u003e\u003c![CDATA[1]]\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Must Feature: max_depth = 1\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_get -i 16 -n extended_properties\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_get\" transaction_id=\"16\" feature_name=\"extended_properties\" supported=\"1\"\u003e\u003c![CDATA[0]]\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Must Feature: extended_properties = 0\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_get -i 17 -n supported_encodings\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_get\" transaction_id=\"17\" feature_name=\"supported_encodings\" supported=\"1\"\u003e\u003c![CDATA[iso-8859-1]]\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Maybe Feature: supported_encodings = iso-8859-1\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_get -i 18 -n supports_postmortem\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_get\" transaction_id=\"18\" feature_name=\"supports_postmortem\" supported=\"1\"\u003e\u003c![CDATA[1]]\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Maybe Feature: supports_postmortem = 1\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_get -i 19 -n show_hidden\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_get\" transaction_id=\"19\" feature_name=\"show_hidden\" supported=\"1\"\u003e\u003c![CDATA[0]]\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Maybe Feature: show_hidden = 0\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_get -i 20 -n notify_ok\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_get\" transaction_id=\"20\" feature_name=\"notify_ok\" supported=\"1\"\u003e\u003c![CDATA[0]]\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Maybe Feature: notify_ok = 0\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_set -i 21 -n multiple_sessions -v 0\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_set\" transaction_id=\"21\" feature=\"multiple_sessions\" success=\"1\"\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} Command: feature_set -i 22 -n extended_properties -v 1\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"feature_set\" transaction_id=\"22\" feature=\"extended_properties\" success=\"1\"\u003e\u003c/response\u003e\r\n- [Info] {Wed 22 2021 11:17:19} Updated line number of breakpoint 11000 to 99\r\n- [Info] {Wed 22 2021 11:17:19} Registering 1 breakpoints with the debugger\r\n- [Debug] {Wed 22 2021 11:17:19} Command: breakpoint_set -i 23 -t line -f \"file:///home/gal/Desktop/Projects/crm/app/Http/Controllers/Customer/TradingAccountDepositsController.php\" -n 99 -s enabled\r\n- [Debug] {Wed 22 2021 11:17:19} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"breakpoint_set\" transaction_id=\"23\" state=\"enabled\" id=\"3500008\"\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:19} starting with run (break_on_open = 0)\r\n- [Debug] {Wed 22 2021 11:17:19} Command: run -i 24\r\n- [Debug] {Wed 22 2021 11:17:21} Response: \u003c?xml version=\"1.0\" encoding=\"iso-8859-1\"?\u003e\r\n\u003cresponse xmlns=\"urn:debugger_protocol_v1\" xmlns:xdebug=\"https://xdebug.org/dbgp/xdebug\" command=\"run\" transaction_id=\"24\" status=\"stopping\" reason=\"ok\"\u003e\u003c/response\u003e\r\n- [Debug] {Wed 22 2021 11:17:21} refresh event\r\n- [Info] {Wed 22 2021 11:17:21} Dispatching refresh event\r\n- [Debug] {Wed 22 2021 11:17:21} ** RefreshEvent\r\n- [Debug] {Wed 22 2021 11:17:21} keymapper: reload_keys\r\n- [Info] {Wed 22 2021 11:17:21} Debugging session has ended\r\n- [Info] {Wed 22 2021 11:17:21} closing connection because status is stopped\r\n- [Debug] {Wed 22 2021 11:17:21} keymapper: reload_keys\r\n- [Info] {Wed 22 2021 11:17:21} Closing the connection\r\n- [Debug] {Wed 22 2021 11:17:21} Closing the socket\r\n- [Debug] {Wed 22 2021 11:17:21} Closing the socket\r\n- [Debug] {Wed 22 2021 11:17:21} Closing the socket\r\n\r\n```","author":{"url":"https://github.com/XyrusTheVirus","@type":"Person","name":"XyrusTheVirus"},"datePublished":"2021-09-22T08:22:16.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":3},"url":"https://github.com/509/vdebug/issues/509"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:d1fc7204-3331-cf2d-3d90-5acc6bc938d2
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idCCD6:C079:B0B2C4:E3FA35:698E8B08
html-safe-nonce5adb321fdf0388640ce3e930c33527369e41756737106af2189b63696d8eb646
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDQ0Q2OkMwNzk6QjBCMkM0OkUzRkEzNTo2OThFOEIwOCIsInZpc2l0b3JfaWQiOiI3MDY0MDE0ODc2MjI2NTIxODY0IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac90dc7f3a99bcef82098678745a6de419f9351f5c06637b369a3773d150f3d3d4
hovercard-subject-tagissue:1003995368
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/vim-vdebug/vdebug/509/issue_layout
twitter:imagehttps://opengraph.githubassets.com/3906cd5b0dea305d8487917749a3cee1aa3256103e361c868974566ed7d57026/vim-vdebug/vdebug/issues/509
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/3906cd5b0dea305d8487917749a3cee1aa3256103e361c868974566ed7d57026/vim-vdebug/vdebug/issues/509
og:image:altHi, I've recently encountered with an vdebug issue, when the debugger attempts to listen to requests, but when hitting an http request to the web server, vdebug seems to disconnect and ignore the b...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameXyrusTheVirus
hostnamegithub.com
expected-hostnamegithub.com
Nonecb2828a801ee6b7be618f3ac76fbf55def35bbc30f053a9c41bf90210b8b72ba
turbo-cache-controlno-preview
go-importgithub.com/vim-vdebug/vdebug git https://github.com/vim-vdebug/vdebug.git
octolytics-dimension-user_id37241739
octolytics-dimension-user_loginvim-vdebug
octolytics-dimension-repository_id4597834
octolytics-dimension-repository_nwovim-vdebug/vdebug
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id4597834
octolytics-dimension-repository_network_root_nwovim-vdebug/vdebug
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasee6b91a7e6e46287d26887e3fb7a4161657bab8f7
ui-targetcanary-2
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/vim-vdebug/vdebug/issues/509#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fvim-vdebug%2Fvdebug%2Fissues%2F509
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fvim-vdebug%2Fvdebug%2Fissues%2F509
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=vim-vdebug%2Fvdebug
Reloadhttps://patch-diff.githubusercontent.com/vim-vdebug/vdebug/issues/509
Reloadhttps://patch-diff.githubusercontent.com/vim-vdebug/vdebug/issues/509
Reloadhttps://patch-diff.githubusercontent.com/vim-vdebug/vdebug/issues/509
vim-vdebug https://patch-diff.githubusercontent.com/vim-vdebug
vdebughttps://patch-diff.githubusercontent.com/vim-vdebug/vdebug
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fvim-vdebug%2Fvdebug
Fork 158 https://patch-diff.githubusercontent.com/login?return_to=%2Fvim-vdebug%2Fvdebug
Star 1.3k https://patch-diff.githubusercontent.com/login?return_to=%2Fvim-vdebug%2Fvdebug
Code https://patch-diff.githubusercontent.com/vim-vdebug/vdebug
Issues 48 https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/issues
Pull requests 7 https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/pulls
Actions https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/actions
Projects 0 https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/projects
Wiki https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/wiki
Security 0 https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/security
Insights https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/pulse
Code https://patch-diff.githubusercontent.com/vim-vdebug/vdebug
Issues https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/issues
Pull requests https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/pulls
Actions https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/actions
Projects https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/projects
Wiki https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/wiki
Security https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/security
Insights https://patch-diff.githubusercontent.com/vim-vdebug/vdebug/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/vim-vdebug/vdebug/issues/509
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/vim-vdebug/vdebug/issues/509
Vim hangs up connection without stopping on breaking pointhttps://patch-diff.githubusercontent.com/vim-vdebug/vdebug/issues/509#top
https://github.com/XyrusTheVirus
https://github.com/XyrusTheVirus
XyrusTheVirushttps://github.com/XyrusTheVirus
on Sep 22, 2021https://github.com/vim-vdebug/vdebug/issues/509#issue-1003995368
https://user-images.githubusercontent.com/6097007/134306370-79986a52-091a-462e-a440-6e778be1be32.png
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.