|
1 |
| -*options.txt* For Vim version 9.1. Last change: 2024 Jun 19 |
| 1 | +*options.txt* For Vim version 9.1. Last change: 2024 Jul 09 |
2 | 2 |
|
3 | 3 |
|
4 | 4 | VIM REFERENCE MANUAL by Bram Moolenaar
|
@@ -2151,11 +2151,6 @@ A jump table for the options with a short description can be found at |Q_op|.
|
2151 | 2151 | difference how completion candidates are reduced from the
|
2152 | 2152 | list of alternatives, but not how the candidates are
|
2153 | 2153 | collected (using different completion types).
|
2154 |
| - fuzzycollect |
2155 |
| - Enable fuzzy collection for default keyword completion. |
2156 |
| - This allows the collection of matches using fuzzy matching |
2157 |
| - criteria, providing more comprehensive and flexible |
2158 |
| - results. Works in combination with other fuzzy options. |
2159 | 2154 |
|
2160 | 2155 | *'completepopup'* *'cpp'*
|
2161 | 2156 | 'completepopup' 'cpp' string (default empty)
|
@@ -5918,6 +5913,20 @@ A jump table for the options with a short description can be found at |Q_op|.
|
5918 | 5913 | (without "unsigned" it would become "9-2019").
|
5919 | 5914 | Using CTRL-X on "0" or CTRL-A on "18446744073709551615"
|
5920 | 5915 | (2^64 - 1) has no effect, overflow is prevented.
|
| 5916 | + blank If included, treat numbers as signed or unsigned based on |
| 5917 | + preceding whitespace. If a number with a leading dash has its |
| 5918 | + dash immediately preceded by a non-whitespace character (i.e., |
| 5919 | + not a tab or a " "), the negative sign won't be considered as |
| 5920 | + part of the number. For example: |
| 5921 | + Using CTRL-A on "14" in "Carbon-14" results in "Carbon-15" |
| 5922 | + (without "blank" it would become "Carbon-13"). |
| 5923 | + Using CTRL-X on "8" in "Carbon -8" results in "Carbon -9" |
| 5924 | + (because -8 is preceded by whitespace. If "unsigned" was |
| 5925 | + set, it would result in "Carbon -7"). |
| 5926 | + If this format is included, overflow is prevented as if |
| 5927 | + "unsigned" were set. If both this format and "unsigned" are |
| 5928 | + included, "unsigned" will take precedence. |
| 5929 | + |
5921 | 5930 | Numbers which simply begin with a digit in the range 1-9 are always
|
5922 | 5931 | considered decimal. This also happens for numbers that are not
|
5923 | 5932 | recognized as octal or hex.
|
|
0 commit comments