|
1 | | -*options.txt* For Vim version 9.1. Last change: 2024 Oct 02 |
| 1 | +*options.txt* For Vim version 9.1. Last change: 2024 Oct 06 |
2 | 2 |
|
3 | 3 |
|
4 | 4 | VIM REFERENCE MANUAL by Bram Moolenaar |
@@ -7789,7 +7789,8 @@ A jump table for the options with a short description can be found at |Q_op|. |
7789 | 7789 | non-blank of the line. When off the cursor is kept in the same column |
7790 | 7790 | (if possible). This applies to the commands: |
7791 | 7791 | - CTRL-D, CTRL-U, CTRL-B, CTRL-F, "G", "H", "M", "L", "gg" |
7792 | | - - "d", "<<" and ">>" with a linewise operator |
| 7792 | + - "d", "<<", "==" and ">>" with a linewise operator |
| 7793 | + (|operator-resulting-pos|) |
7793 | 7794 | - "%" with a count |
7794 | 7795 | - buffer changing commands (CTRL-^, :bnext, :bNext, etc.) |
7795 | 7796 | - Ex commands that only has a line number, e.g., ":25" or ":+". |
@@ -8432,8 +8433,11 @@ A jump table for the options with a short description can be found at |Q_op|. |
8432 | 8433 | local to window |
8433 | 8434 | The key that starts a CTRL-W command in a terminal window. Other keys |
8434 | 8435 | are sent to the job running in the window. |
8435 | | - The <> notation can be used, e.g.: > |
8436 | | - :set termwinkey=<C-L> |
| 8436 | + The key can be specified as a single character, a |key-notation| (e.g. |
| 8437 | + <Up>, <C-F>) or a letter preceded with a caret (e.g. `^F` is CTRL-F): > |
| 8438 | + :set twk=X |
| 8439 | + :set twk=^I |
| 8440 | + :set twk=<C-L> |
8437 | 8441 | < The string must be one key stroke but can be multiple bytes. |
8438 | 8442 | When not set CTRL-W is used, so that CTRL-W : gets you to the command |
8439 | 8443 | line. If 'termwinkey' is set to CTRL-L then CTRL-L : gets you to the |
@@ -9330,7 +9334,12 @@ A jump table for the options with a short description can be found at |Q_op|. |
9330 | 9334 | Some keys will not work, such as CTRL-C, <CR> and Enter. |
9331 | 9335 | <Esc> can be used, but hitting it twice in a row will still exit |
9332 | 9336 | command-line as a failsafe measure. |
9333 | | - Although 'wc' is a number option, you can set it to a special key: > |
| 9337 | + Although 'wc' is a number option, it can be specified as a number, a |
| 9338 | + single character, a |key-notation| (e.g. <Up>, <C-F>) or a letter |
| 9339 | + preceded with a caret (e.g. `^F` is CTRL-F): > |
| 9340 | + :set wc=27 |
| 9341 | + :set wc=X |
| 9342 | + :set wc=^I |
9334 | 9343 | :set wc=<Tab> |
9335 | 9344 | < NOTE: This option is set to the Vi default value when 'compatible' is |
9336 | 9345 | set and to the Vim default value when 'compatible' is reset. |
|
0 commit comments