|
1 |
| -*options.txt* For Vim version 9.1. Last change: 2024 Sep 26 |
| 1 | +*options.txt* For Vim version 9.1. Last change: 2024 Oct 02 |
2 | 2 |
|
3 | 3 |
|
4 | 4 | VIM REFERENCE MANUAL by Bram Moolenaar
|
@@ -1651,9 +1651,10 @@ A jump table for the options with a short description can be found at |Q_op|.
|
1651 | 1651 | The default is CTRL-F when 'compatible' is off.
|
1652 | 1652 | Only non-printable keys are allowed.
|
1653 | 1653 | The key can be specified as a single character, but it is difficult to
|
1654 |
| - type. The preferred way is to use the <> notation. Examples: > |
1655 |
| - :exe "set cedit=\<C-Y>" |
1656 |
| - :exe "set cedit=\<Esc>" |
| 1654 | + type. The preferred way is to use |key-notation| (e.g. <Up>, <C-F>) or |
| 1655 | + a letter preceded with a caret (e.g. `^F` is CTRL-F). Examples: > |
| 1656 | + :set cedit=^Y |
| 1657 | + :set cedit=<Esc> |
1657 | 1658 | < |Nvi| also has this option, but it only uses the first character.
|
1658 | 1659 | See |cmdwin|.
|
1659 | 1660 | NOTE: This option is set to the Vim default value when 'compatible'
|
@@ -2101,6 +2102,16 @@ A jump table for the options with a short description can be found at |Q_op|.
|
2101 | 2102 | This option cannot be set from a |modeline| or in the |sandbox|, for
|
2102 | 2103 | security reasons.
|
2103 | 2104 |
|
| 2105 | + *'completeitemalign'* *'cia'* |
| 2106 | +'completeitemalign' 'cia' string (default: "abbr,kind,menu") |
| 2107 | + global |
| 2108 | + A comma-separated list of |complete-items| that controls the alignment |
| 2109 | + and display order of items in the popup menu during Insert mode |
| 2110 | + completion. The supported values are abbr, kind, and menu. These |
| 2111 | + options allow to customize how the completion items are shown in the |
| 2112 | + popup menu. Note: must always contain those three values in any |
| 2113 | + order. |
| 2114 | + |
2104 | 2115 | *'completeopt'* *'cot'*
|
2105 | 2116 | 'completeopt' 'cot' string (default: "menu,preview")
|
2106 | 2117 | global or local to buffer |global-local|
|
@@ -3492,14 +3503,14 @@ A jump table for the options with a short description can be found at |Q_op|.
|
3492 | 3503 | /* vim: set filetype=idl : */ ~
|
3493 | 3504 | |FileType| |filetypes|
|
3494 | 3505 | When a dot appears in the value then this separates two filetype
|
3495 |
| - names. Example: |
| 3506 | + names, it should therefore not be used for a filetype. Example: |
3496 | 3507 | /* vim: set filetype=c.doxygen : */ ~
|
3497 | 3508 | This will use the "c" filetype first, then the "doxygen" filetype.
|
3498 | 3509 | This works both for filetype plugins and for syntax files. More than
|
3499 | 3510 | one dot may appear.
|
3500 | 3511 | This option is not copied to another buffer, independent of the 's' or
|
3501 | 3512 | 'S' flag in 'cpoptions'.
|
3502 |
| - Only normal file name characters can be used, "/\*?[|<>" are illegal. |
| 3513 | + Only alphanumeric characters, '-' and '_' can be used. |
3503 | 3514 |
|
3504 | 3515 | *'fillchars'* *'fcs'*
|
3505 | 3516 | 'fillchars' 'fcs' string (default "vert:|,fold:-,eob:~")
|
@@ -4981,7 +4992,7 @@ A jump table for the options with a short description can be found at |Q_op|.
|
4981 | 4992 | Setting this option to a valid keymap name has the side effect of
|
4982 | 4993 | setting 'iminsert' to one, so that the keymap becomes effective.
|
4983 | 4994 | 'imsearch' is also set to one, unless it was -1
|
4984 |
| - Only normal file name characters can be used, "/\*?[|<>" are illegal. |
| 4995 | + Only alphanumeric characters, '.', '-' and '_' can be used. |
4985 | 4996 |
|
4986 | 4997 | *'keymodel'* *'km'*
|
4987 | 4998 | 'keymodel' 'km' string (default "")
|
@@ -8101,7 +8112,7 @@ A jump table for the options with a short description can be found at |Q_op|.
|
8101 | 8112 | Syntax autocommand event is triggered with the value as argument.
|
8102 | 8113 | This option is not copied to another buffer, independent of the 's' or
|
8103 | 8114 | 'S' flag in 'cpoptions'.
|
8104 |
| - Only normal file name characters can be used, "/\*?[|<>" are illegal. |
| 8115 | + Only alphanumeric characters, '.', '-' and '_' can be used. |
8105 | 8116 |
|
8106 | 8117 | *'tabclose'* *'tcl'*
|
8107 | 8118 | 'tabclose' 'tcl' string (default "")
|
|
0 commit comments