Lines Matching refs:mode

7 Visual mode				*Visual* *Visual-mode* *visual-mode*
9 Visual mode is a flexible and easy way to select a piece of text for an
14 1. Using Visual mode |visual-use|
15 2. Starting and stopping Visual mode |visual-start|
21 8. Select mode |Select-mode|
26 1. Using Visual mode *visual-use*
28 Using Visual mode consists of three parts:
32 The text from the start of the Visual mode up to and including the
37 The 'highlight' option can be used to set the display mode to use for
38 highlighting in Visual mode.
52 With CTRL-V (blockwise Visual mode) the highlighted text will be a rectangle
59 2. Starting and stopping Visual mode *visual-start*
62 [count]v Start Visual mode per character.
75 [count]V Start Visual mode linewise.
83 [count]CTRL-V Start Visual mode blockwise. Note: Under Windows
85 to start Visual mode then, see |CTRL-V-alternative|.
89 does a jump to another buffer while in Visual mode, the highlighting stops
90 and no text is affected. Also when you hit "v" in characterwise Visual mode,
91 "CTRL-V" in blockwise Visual mode or "V" in linewise Visual mode. If you hit
95 new mode after typing: *v_v* *v_CTRL-V* *v_V*
96 old mode "v" "CTRL-V" "V" ~
104 gv Start Visual mode with the same area as the previous
105 area and the same mode.
106 In Visual mode the current and the previous Visual
108 After using "p" or "P" in Visual mode the text that
113 with `n`, and start Visual mode to select the match.
117 If Visual mode is active, extends the selection
127 <LeftMouse> Set the current cursor position. If Visual mode is
136 <RightMouse> Start Visual mode if it is not active. The text from
138 highlighted. If Visual mode was already active move
155 If Visual mode is not active and the "v", "V" or CTRL-V is preceded with a
159 - Linewise Visual mode: The number of lines is multiplied with the count.
160 - Blockwise Visual mode: The number of lines and columns is multiplied with
162 - Normal Visual mode within one line: The number of characters is multiplied
164 - Normal Visual mode with several lines: The number of lines is multiplied
175 <Esc> In Visual mode: Stop Visual mode.
178 CTRL-C In Visual mode: Stop Visual mode. When insert mode is
179 pending (the mode message shows
194 "o", but in Visual block mode the cursor moves to the
201 When the "$" command is used with blockwise Visual mode, the right end of the
208 and CTRL-O cause a beep and Visual mode continues.
282 mode. For example, if you would like the "/" command not to extend the Visual
304 mode.
337 using "c" the selected text is deleted and Insert mode started. You can then
364 When repeating a Visual mode operator, the operator will be applied to the
366 - Linewise Visual mode: The same number of lines.
367 - Blockwise Visual mode: The same number of lines and columns.
368 - Normal Visual mode within one line: The same number of characters.
369 - Normal Visual mode with several lines: The same number of lines, in the
392 <Esc> stop Visual mode
464 8. Select mode *Select* *Select-mode*
466 Select mode looks like Visual mode, but the commands accepted are quite
467 different. This resembles the selection mode in Microsoft Windows.
470 Entering Select mode:
472 'mouse' must also contain a flag for the current mode.
477 - Using "gh", "gH" or "g_CTRL-H" command in Normal mode.
478 - From Visual mode, press CTRL-G. *v_CTRL-G*
480 Commands in Select mode:
482 Vim enters Insert mode. The typed character is inserted.
486 mode. 'keymodel' must include "stopsel".
487 - ESC stops Select mode.
488 - CTRL-O switches to Visual mode for the duration of one command. *v_CTRL-O*
489 - CTRL-G switches to Visual mode.
491 Otherwise, typed characters are handled as in Visual mode.
493 When using an operator in Select mode, and the selection is linewise, the
498 Mappings and menus in Select mode. *Select-mode-mapping*
501 work both in Visual mode and in Select mode. When these are used in Select
502 mode Vim automatically switches to Visual mode, so that the same behavior as
503 in Visual mode is effective. If you don't want this use |:xmap| or |:smap|.
506 Therefore avoid mapping printable characters in Select mode. Or use
507 |:sunmap| after |:map| and |:vmap| to remove it for Select mode.
510 mode entered, unless the selected area was deleted, another buffer became
514 mode started, Insert mode mappings are applied to this character. This may
515 cause some confusion, because it means Insert mode mappings apply to a
516 character typed in Select mode. Language mappings apply as well.
520 after a Select mode mapping or menu has finished.
526 gh Start Select mode, characterwise. This is like "v",
527 but starts Select mode instead of Visual mode.
531 gH Start Select mode, linewise. This is like "V",
532 but starts Select mode instead of Visual mode.
536 g CTRL-H Start Select mode, blockwise. This is like CTRL-V,
537 but starts Select mode instead of Visual mode.