Home
last modified time | relevance | path

Searched refs:command (Results 1 – 25 of 610) sorted by relevance

12345678910>>...25

/vim-8.2.3635/src/testdir/
H A Dtest_usercommands.vim336 command! DoCmd1 :
337 command! DoCmd2 :
465 command! DoCmd :
471 command! -range DoCmd :
559 command! -bang DoCmd :
563 command! -bar DoCmd :
571 command! -buffer DoCmd :
592 command! DoCmd :
626 command DoSomething {
638 command DoMap {
[all …]
H A Dcheck.vim75 command CheckMSWindows call CheckMSWindows()
91 command CheckUnix call CheckUnix()
99 command CheckLinux call CheckLinux()
107 command CheckNotBSD call CheckNotBSD()
132 command CheckCanRunGui call CheckCanRunGui()
148 command CheckGui call CheckGui()
156 command CheckNotGui call CheckNotGui()
164 command CheckNotRoot call CheckNotRoot()
172 command CheckEnglish call CheckEnglish()
180 command CheckIPv6 call CheckIPv6()
[all …]
H A Dtest_command_count.vim1 " Test for user command counts.
13 command! -range -addr=loaded_buffers RangeLoadedBuffers :let lines = [<line1>, <line2>]
15 command! -range -addr=buffers RangeBuffers :let lines = [<line1>, <line2>]
16 command! -range=% -addr=buffers RangeBuffersAll :let lines = [<line1>, <line2>]
45 command! -range -addr=arguments RangeArguments :let lines = [<line1>, <line2>]
61 command! -range -addr=windows RangeWindows :let lines = [<line1>, <line2>]
68 command! -range=% -addr=windows RangeWindowsAll :let lines = [<line1>, <line2>]
77 command! -range -addr=tabs RangeTabs :let lines = [<line1>, <line2>]
84 command! -range=% -addr=tabs RangeTabsAll :let lines = [<line1>, <line2>]
93 command! -range=% RangeLines :let lines = [<line1>, <line2>]
[all …]
/vim-8.2.3635/runtime/doc/
H A Dif_tcl.txt90 ::vim::command [-quiet] {cmd} # Execute an Ex command.
121 ::vim::command {cmd} *tcl-command*
123 Execute the vim (ex-mode) command {cmd}. Any Ex command that affects
129 ::vim::command "set ts=8"
134 < See also |tcl-window-command| and |tcl-buffer-command|.
240 $win command {cmd} # Execute Ex command in windows context.
288 $win command [-quiet] {cmd} *tcl-window-command*
313 command (see |undo|).
319 $buf command {cmd} # Execute Ex command in buffers context.
413 $buf command [-quiet] {cmd} *tcl-buffer-command*
[all …]
H A Dusr_10.txt16 |10.4| The global command
70 command "@a" three times.
163 The "%" before the command specifies the command works on all lines. Without
177 The command: >
210 kind as used for the search command. For example, this command only
309 command, you will see this: >
343 *10.4* The global command
352 matched text with other text, the command {command} is executed.
357 command can do this for you.
539 using the "J" command:
[all …]
H A Dusr_20.txt5 Typing command-line commands quickly
28 search command.
52 CTRL-B or <Home> to begin of command line
53 CTRL-E or <End> to end of command line
104 Vi pressing <Esc> in a command line executed the command! Since that
319 command: >
335 Open the command line window with this command: >
363 Now press <Enter> and this command will be executed. The command line window
373 command can be used to find something.
376 because you are using a command line to search in the command line window.
[all …]
H A Dusr_40.txt9 often and turn it into a new command. Or redefine an existing command.
13 |40.2| Defining command-line commands
39 The ":" character takes Vim to the command line. The ":read !date" command
84 the following command: >
208 The ":map" command can be followed by another command. A | character
284 To define a command, use the ":command" command, as follows: >
286 :command DeleteFirst 1delete
298 :command
464 and finally, {command} is the command to be executed.
609 want to use a Normal mode command, the ":normal" command can be used.
[all …]
H A Dcmdline.txt552 :command
595 :command
630 a user defined command without the "-bar" argument |:command|
635 To be able to use another command anyway, use the ":execute" command.
690 The '!' (bang) character after an Ex command makes the command behave in a
1067 command expands to ~
1105 In the command-line window the command line can be edited just like editing
1131 command-line.
1146 any command that you entered in the command-line window. Other text edits are
1167 executed command applies to the window and buffer where the command-line was
[all …]
H A Dusr_02.txt58 use this command: >
286 There's a special version of the undo command, the "U" (undo line) command.
302 The "U" command is a change by itself, which the "u" command undoes and CTRL-R
318 the "a" (append) command.
364 command "3a!<Esc>". The count of 3 tells the command that follows to triple
371 To exit, use the "ZZ" command. This command writes the file and exits.
475 following command: >
481 example, use the command: >
539 "gt" command: >
550 command argument %: >
[all …]
H A Dusr_12.txt48 substitute command prompt you for each replacement: >
84 the "e" flag to the substitute command: >
103 This can be done with just one command: >
180 The |:global| command can be combined with the |:move| command to move all the
208 command: >
252 can use the ":Man" command to open a window on a man page: >
286 command: >
317 the word "frame_counter". To do this you use the command: >
321 Let's look at this command in detail. The grep command searches through a set
328 to run this command and pretend that the results were typed on the command
[all …]
H A Dusr_03.txt109 command. The command "fx" searches forward in the line for the single
127 The "F" command searches to the left:
133 The "tx" command works like the "fx" command, except it stops one character
135 version of this command is "Tx".
309 the cursor. That's done with the "zz" command.
329 for example, use the command: >
337 Pressing <Enter> executes the command.
434 There is another way. Type this command: >
445 command. If you only want to remove the highlighting, use this command: >
564 where you came from, use this command: >
[all …]
H A Dmap.txt116 command applies.
1335 :command Rename ...
1340 :command Paste ...
1374 Define a user command. The name of the command is
1450 -complete=command Ex command (and arguments)
1533 *E177* *E178* *:command-range* *:command-count*
1574 *:command-bang* *:command-bar*
1575 *:command-register* *:command-buffer*
1580 -bar The command can be followed by a "|" and another command.
1611 another command.
[all …]
H A Dvarious.txt117 Note: A user command can overrule this command.
217 This command cannot be followed by another command,
569 :filt[er][!] {pat} {command}
570 :filt[er][!] /{pat}/ {command}
589 |:command| - filter by command name
607 :sil[ent][!] {command} Execute {command} silently. Normal messages will not
636 Command-line command. The command will still produce
641 :uns[ilent] {command} Execute {command} not silently. Only makes a
643 command.
652 :[count]verb[ose] {command}
[all …]
H A Dusr_04.txt32 The "dw" command deletes a word. You may recognize the "w" command as the
33 move word command. In fact, the "d" command may be followed by any motion
37 command deletes four words.
60 The "$" command moves to the end of a line. The "d$" command deletes from the
117 single-letter command:
168 </B> and delete it using the "." command. The "." command executes the last
170 cursor on the < and use the "." command.
204 the operator command.
280 command. The line is inserted on the line below the cursor.
288 command puts it just after the cursor.
[all …]
H A Drepeat.txt27 command-line command.
84 the command. If an error message is given for a line, the command for that
95 To execute a non-Ex command, you can use the `:normal` command: >
101 The undo/redo command will undo/redo the whole global command at once.
166 Ex command.
413 command.
416 ':source!' command. Useful for long command sequences. Can be combined with
503 command: >
763 the command line: >
856 executing the command.
[all …]
H A Darabic.txt58 command.
60 o Toggling complete Arabic support via a single command.
104 by entering the following command in the Vim window.
139 Vim with the command-line option,
143 or enable 'arabic' via the following command within Vim
149 setting, both command options:
154 4. enable rightleftcmd mode (affecting the command-line)
166 In short the 'noarabic' command,
194 'keymap' command to "arabic". This is done by entering
239 + Arabic right-to-left command-line Mode
[all …]
H A Dusr_08.txt62 To close a window, use the command: >
74 one of them, this command will be useful: >
191 The ":vertical" command can be inserted before another command that splits a
238 and then type this command: >
292 changes, use this command: >
300 quit all" command: >
309 Be careful, there is no way to undo this command!
344 Type this command in a shell (not in Vim): >
459 Now type this command: >
552 command. Mnemonic: Goto Tab.
[all …]
H A Dusr_26.txt26 changed. But making the selection takes some typing. The "gv" command
51 a substitute command for each year that appears, the CTRL-A command can be
101 The CTRL-X command does subtraction in a similar way.
114 substitution command on all these files: >
118 The ":argdo" command takes an argument that is another command. That command
120 The "%s" substitute command that follows works on all lines. It finds the
131 There is also the ":windo" command, which executes its argument in all
134 Check this with the ":buffers" command (or ":ls").
144 not result in clear, commented command files; so here you will use Ex mode
146 to put into a batch file. ("Ex command" is just another name for a
[all …]
H A Dmessage.txt36 The "g<" command can be used to see the last page of previous command output.
42 The previous command output is cleared when another command produces output.
133 This happens when an Ex command executes an Ex command that executes an Ex
307 write anyway, use the same command, but add a "!" just after the command.
410 used pattern in a ":substitute" command. This fails when no such command has
708 A command line started with a backslash or the range of a command contained a
771 Not an editor command
773 You tried to execute a command that is neither an Ex command nor
774 a user-defined command.
865 command-line
[all …]
H A Dusr_42.txt27 To define a menu item, use the ":menu" command. The basic form of this
28 command is as follows: >
38 The ":update" command writes the file when it was modified.
43 The ":menu" command is very similar to the ":map" command: the left side
120 command is ":exit<CR>".
144 like the variations on the ":map" command:
179 Insert mode will execute the command and then return to Insert mode.
199 means you will see the command being echoed on the command line. If it's a
203 When you use this menu, you will see this on the command line:
260 command like: >
[all …]
H A Dautocmd.txt79 {cmd} can be a block, like with `:command`, see |:command-repl|. Example: >
85 Note: The ":autocmd" command can only be followed by another command when the
767 command, but also with a |:checktime| command
835 filter command.
850 filter command.
1009 command is not executed.
1317 command was given with each pattern separately. Thus this command: >
1660 command. Use with care! If the Normal mode command is not finished, the user
1680 If you want to skip autocommands for one command, use the |:noautocmd| command
1752 When entering :autocmd on the command-line, completion of events and command
[all …]
H A Dvi_diff.txt16 1. Simulated command |simulated-command|
26 1. Simulated command *simulated-command*
306 - command :e<Tab>
412 The |[I| command lists all matches, the |[_CTRL-I| command jumps to
443 or command-line command after exiting and restarting Vim. It is also
500 In command mode:
553 the command.
574 movement command).
1140 +{command} Elvis, Nvi, Posix, Vi, Vim: Same as "-c {command}".
1147 --cmd {command} Vim: execute {command} before sourcing vimrc files.
[all …]
/vim-8.2.3635/src/libvterm/t/
H A Drun-test.pl20 my @command = $EXECUTABLE;
23 $hpid = open2 $hout, $hin, @command or die "Cannot open2 harness - $!";
28 my $command;
35 $hin->print( "$command\n" );
36 undef $command;
76 do_onetest if defined $command;
89 do_onetest if defined $command;
91 $command = $line;
137 do_onetest if defined $command;
155 do_onetest if defined $command;
[all …]
/vim-8.2.3635/src/libvterm/src/
H A Dparser.c22 static void do_csi(VTerm *vt, char command) in do_csi() argument
41 command, in do_csi()
45 DEBUG_LOG1("libvterm: Unhandled CSI %c\n", command); in do_csi()
48 static void do_escape(VTerm *vt, char command) in do_escape() argument
54 seq[len++] = command; in do_escape()
61 DEBUG_LOG1("libvterm: Unhandled escape ESC 0x%02x\n", command); in do_escape()
250 if(vt->parser.v.osc.command == -1) in vterm_input_write()
251 vt->parser.v.osc.command = 0; in vterm_input_write()
253 vt->parser.v.osc.command *= 10; in vterm_input_write()
254 vt->parser.v.osc.command += c - '0'; in vterm_input_write()
[all …]
/vim-8.2.3635/src/
H A DREADME.md18 use the `CTRL-]` command. Use `CTRL-T` or `CTRL-O` to jump back.
20 To jump to a file, move the cursor on its name and use the `gf` command.
36 cmdexpand.c | command-line completion
37 cmdhist.c | command-line history
104 command to debug Vim. See `:help :Termdebug`.
137 calls `normal_cmd()` to process a command. This returns when the command is
158 ends the command line mode.
165 command. It also takes care of while loops.
168 `exarg_t` and passes it to the function that handles the command.
172 flags that are used for the command.
[all …]

12345678910>>...25