Lines Matching refs:commands
7 Repeating commands, Vim scripts and debugging *repeating*
77 The global commands work by first scanning through the [range] lines and
96 :g/pat/normal {commands}
97 Make sure that {commands} ends with a whole command, otherwise Vim will wait
115 execute commands there until you use |Q| to return to Ex mode. This will be
137 only syncs when commands were typed.
167 Mappings are not recognized in these commands.
197 :so[urce] {file} Read Ex commands from {file}. These are commands that
201 :so[urce]! {file} Read Vim commands from {file}. These are commands
207 commands.
212 Read Ex commands from {file} in each directory given
287 AFTER all `packadd!` commands.
370 commands. Also see |vim9-namespace|.
374 for some commands.
395 matching |:finally| (if present), the commands
401 All commands and command sequences can be repeated by putting them in a named
402 register and then executing it. There are two ways to get the commands in the
404 - Use the record command "q". You type the commands once, and while they are
415 An alternative is to put the commands in a file, and execute them with the
417 the ':map' command to put complicated commands under a function key.
419 The ':source' command reads Ex commands from a file line by line. You will
430 It is possible to put ':source[!]' commands in the script file, so you can
468 problems for some commands (e.g., mappings). There is no automatic <EOL>
498 There is a problem with the ":append" and ":insert" commands: >
513 Note that when the commands are inside a function, you need to add the 'C'
680 start/foobar/plugin/foo.vim " always loaded, defines commands
681 start/foobar/plugin/bar.vim " always loaded, defines commands
685 opt/fooextra/plugin/extra.vim " optional plugin, defines commands
770 a line contains two commands, separated by "|", each command will be displayed
776 Once in debugging mode, the usual Ex commands can be used. For example, to
782 All commands are executed in the context of the current function or script.
800 Additionally, these commands can be used:
838 About the additional commands in debug mode:
840 normal Ex commands only.
889 < Note that this only works for commands that are executed when
972 Read debug mode commands from the normal input stream, instead
978 Undo ":debuggreedy": get debug mode commands directly from the
979 user, don't use typeahead for debug commands.
1062 - external (shell) commands
1085 - If you have several commands in one line you only get one time. Split the
1086 line to see the time for the individual commands.