comparison runtime/doc/terminal.txt @ 18130:1e5672da6a69

Updte runtime files Commit: https://github.com/vim/vim/commit/589edb340454e7f1b19358f129287a636d53d0e1 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Sep 20 14:38:13 2019 +0200 Updte runtime files
author Bram Moolenaar <Bram@vim.org>
date Fri, 20 Sep 2019 14:45:05 +0200
parents 8ac85adee561
children 4ac8161e92e0
comparison
equal deleted inserted replaced
18129:52078b0635f7 18130:1e5672da6a69
1 *terminal.txt* For Vim version 8.1. Last change: 2019 Sep 08 1 *terminal.txt* For Vim version 8.1. Last change: 2019 Sep 20
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
1223 In the window showing the source code these commands can be used to control 1223 In the window showing the source code these commands can be used to control
1224 gdb: 1224 gdb:
1225 `:Run` [args] run the program with [args] or the previous arguments 1225 `:Run` [args] run the program with [args] or the previous arguments
1226 `:Arguments` {args} set arguments for the next `:Run` 1226 `:Arguments` {args} set arguments for the next `:Run`
1227 1227
1228 *:Break* set a breakpoint at the current line; a sign will be displayed 1228 *:Break* set a breakpoint at the cursor position
1229 *:Clear* delete the breakpoint at the current line 1229 :Break {position}
1230 set a breakpoint at the specified position
1231 *:Clear* delete the breakpoint at the cursor position
1230 1232
1231 *:Step* execute the gdb "step" command 1233 *:Step* execute the gdb "step" command
1232 *:Over* execute the gdb "next" command (`:Next` is a Vim command) 1234 *:Over* execute the gdb "next" command (`:Next` is a Vim command)
1233 *:Finish* execute the gdb "finish" command 1235 *:Finish* execute the gdb "finish" command
1234 *:Continue* execute the gdb "continue" command 1236 *:Continue* execute the gdb "continue" command