aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/debugger.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-11-13 06:35:42 +0800
committerzeertzjq <zeertzjq@outlook.com>2023-11-13 06:46:17 +0800
commit04d951685bcdfeb219e7fdc2fac8e6baf198e847 (patch)
tree0e7b941b056d0f52d9b15ae2641ca7c15a9c28a3 /src/nvim/debugger.c
parent5ce3b89ff354e3e43d323b49f92dbce3bdd191c8 (diff)
downloadrneovim-04d951685bcdfeb219e7fdc2fac8e6baf198e847.tar.gz
rneovim-04d951685bcdfeb219e7fdc2fac8e6baf198e847.tar.bz2
rneovim-04d951685bcdfeb219e7fdc2fac8e6baf198e847.zip
vim-patch:8.2.2996: Vim9: when debugging cannot inspect local variables
Problem: Vim9: when debugging cannot inspect local variables. Solution: Make local variables available when debugging. https://github.com/vim/vim/commit/b69c6fb7b423ddc4578b093cb19257cad459dfae Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'src/nvim/debugger.c')
-rw-r--r--src/nvim/debugger.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/debugger.c b/src/nvim/debugger.c
index 31aad11d60..9bd2238c25 100644
--- a/src/nvim/debugger.c
+++ b/src/nvim/debugger.c
@@ -230,7 +230,7 @@ void do_debug(char *cmd)
}
if (last_cmd != 0) {
- // Execute debug command: decided where to break next and return.
+ // Execute debug command: decide where to break next and return.
switch (last_cmd) {
case CMD_CONT:
debug_break_level = -1;