diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-12-15 06:27:49 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-15 06:27:49 +0800 |
commit | 046efa106e93303bc848edf63887b3bc0889b535 (patch) | |
tree | 7a6f439a724ad180f9176562a0c4d18db3df7d89 /runtime/doc | |
parent | ef38fdfdc6c84abd8ce7be02eaf8edc91ebc7917 (diff) | |
download | rneovim-046efa106e93303bc848edf63887b3bc0889b535.tar.gz rneovim-046efa106e93303bc848edf63887b3bc0889b535.tar.bz2 rneovim-046efa106e93303bc848edf63887b3bc0889b535.zip |
vim-patch:323dda1484d9 (#26583)
runtime(termdebug): add Tbreak command
closes: vim/vim#13656
https://github.com/vim/vim/commit/323dda1484d95ee5c8a1b2205f8c495446df75ee
Co-authored-by: iam28th <artyom28th@gmail.com>
Diffstat (limited to 'runtime/doc')
-rw-r--r-- | runtime/doc/nvim_terminal_emulator.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/runtime/doc/nvim_terminal_emulator.txt b/runtime/doc/nvim_terminal_emulator.txt index dbc14f5a44..67e5e53c95 100644 --- a/runtime/doc/nvim_terminal_emulator.txt +++ b/runtime/doc/nvim_terminal_emulator.txt @@ -283,8 +283,13 @@ gdb: `:Run` [args] run the program with [args] or the previous arguments `:Arguments` {args} set arguments for the next `:Run` - *:Break* set a breakpoint at the current line; a sign will be displayed - *:Clear* delete the breakpoint at the current line + *:Break* set a breakpoint at the cursor position + :Break {position} + set a breakpoint at the specified position + *:Tbreak* set a temporary breakpoint at the cursor position + :Tbreak {position} + set a temporary breakpoint at the specified position + *:Clear* delete the breakpoint at the cursor position *:Step* execute the gdb "step" command *:Over* execute the gdb "next" command (`:Next` is a Vim command) |