comparison runtime/doc/terminal.txt @ 28517:f73a9bdff3a3

Update runtime files Commit: https://github.com/vim/vim/commit/75ab590f8504a8912ca0b8c58f6b897bb7a34f07 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Apr 18 15:36:40 2022 +0100 Update runtime files
author Bram Moolenaar <Bram@vim.org>
date Mon, 18 Apr 2022 16:45:03 +0200
parents 6dd88e45d47d
children ad63d6a8ed21
comparison
equal deleted inserted replaced
28516:91556781726b 28517:f73a9bdff3a3
1283 Put focus on the gdb window to type commands there. Some common ones are: 1283 Put focus on the gdb window to type commands there. Some common ones are:
1284 - CTRL-C interrupt the program 1284 - CTRL-C interrupt the program
1285 - next execute the current line and stop at the next line 1285 - next execute the current line and stop at the next line
1286 - step execute the current line and stop at the next statement, 1286 - step execute the current line and stop at the next statement,
1287 entering functions 1287 entering functions
1288 - until execute until past the current cursor line or past a specified
1289 position or the current stack frame returns
1288 - finish execute until leaving the current function 1290 - finish execute until leaving the current function
1289 - where show the stack 1291 - where show the stack
1290 - frame N go to the Nth stack frame 1292 - frame N go to the Nth stack frame
1291 - continue continue execution 1293 - continue continue execution
1292 1294
1301 set a breakpoint at the specified position 1303 set a breakpoint at the specified position
1302 *:Clear* delete the breakpoint at the cursor position 1304 *:Clear* delete the breakpoint at the cursor position
1303 1305
1304 *:Step* execute the gdb "step" command 1306 *:Step* execute the gdb "step" command
1305 *:Over* execute the gdb "next" command (`:Next` is a Vim command) 1307 *:Over* execute the gdb "next" command (`:Next` is a Vim command)
1308 *:Until* execute the gdb "until" command
1306 *:Finish* execute the gdb "finish" command 1309 *:Finish* execute the gdb "finish" command
1307 *:Continue* execute the gdb "continue" command 1310 *:Continue* execute the gdb "continue" command
1308 *:Stop* interrupt the program 1311 *:Stop* interrupt the program
1309 1312
1310 If 'mouse' is set the plugin adds a window toolbar with these entries: 1313 If 'mouse' is set the plugin adds a window toolbar with these entries: