From c8a99831d67527979ae6ca1cac86fb3934bf4c5d Mon Sep 17 00:00:00 2001 From: yury Date: Tue, 7 Jan 2020 11:59:44 +0200 Subject: [PATCH 1/3] Remove colon for consistency --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3ad8aa1..7f43851 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ For a tutorial and usage overview, take a look at the * [Variables and scopes](#variables-and-scopes) * [Watches](#watches) * [Stack Traces](#stack-traces) - * [Program Output:](#program-output) + * [Program Output](#program-output) * [Console](#console) * [Debug adapter configuration](#debug-adapter-configuration) * [Supported Languages](#supported-languages-1) @@ -473,7 +473,7 @@ new watch expression. * In the threads window, use `` to expand/collapse. * Use `` on a stack frame to jump to it. -## Program Output: +## Program Output * In the outputs window use the WinBar to select the output channel. * The debugee prints to the stdout channel. From 0ecc99a75c8a1fd8e16e82a4e41c8bf23c16818e Mon Sep 17 00:00:00 2001 From: yury Date: Tue, 7 Jan 2020 11:59:59 +0200 Subject: [PATCH 2/3] Add instruction on how to close the debugger Omit `Reset` mapping --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 7f43851..364afec 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ For a tutorial and usage overview, take a look at the * [Stack Traces](#stack-traces) * [Program Output](#program-output) * [Console](#console) + * [Closing debugger](#closing-debugger) * [Debug adapter configuration](#debug-adapter-configuration) * [Supported Languages](#supported-languages-1) * [Partially supported](#partially-supported) @@ -490,6 +491,13 @@ CLI for the debug adapter. Support for this varies amongt adapters. NOTE: See also [Watches][#watches] above. +## Closing debugger + +To close the debugger, use: + +* `Reset` button when mouse support is enabled in vim (`set mouse=a`) +* `call vimspector#Reset()` + # Debug adapter configuration ## Supported Languages From c8334dc30c63bbfc31a4703620525a2c1d14f06e Mon Sep 17 00:00:00 2001 From: yury Date: Tue, 7 Jan 2020 12:00:35 +0200 Subject: [PATCH 3/3] Fix Watches link in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 364afec..ecf1177 100644 --- a/README.md +++ b/README.md @@ -489,7 +489,7 @@ CLI for the debug adapter. Support for this varies amongt adapters. * Commit the request with `` * The request and subsequent result are printed. -NOTE: See also [Watches][#watches] above. +NOTE: See also [Watches](#watches) above. ## Closing debugger