zeertzjq | 20e045f | 2024-10-28 22:05:26 +0100 | [diff] [blame] | 1 | *eval.txt* For Vim version 9.1. Last change: 2024 Oct 28 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2 | |
| 3 | |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 4 | VIM REFERENCE MANUAL by Bram Moolenaar |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5 | |
| 6 | |
| 7 | Expression evaluation *expression* *expr* *E15* *eval* |
Bram Moolenaar | 6f4754b | 2022-01-23 12:07:04 +0000 | [diff] [blame] | 8 | *E1002* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 9 | Using expressions is introduced in chapter 41 of the user manual |usr_41.txt|. |
| 10 | |
| 11 | Note: Expression evaluation can be disabled at compile time. If this has been |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 12 | done, the features in this document are not available. See |+eval| and |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 13 | |no-eval-feature|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 14 | |
Bram Moolenaar | 1cae5a0 | 2021-12-27 21:28:34 +0000 | [diff] [blame] | 15 | This file is mainly about the backwards compatible (legacy) Vim script. For |
Bram Moolenaar | 2f0936c | 2022-01-08 21:51:59 +0000 | [diff] [blame] | 16 | specifics of Vim9 script, which can execute much faster, supports type |
| 17 | checking and much more, see |vim9.txt|. Where the syntax or semantics differ |
| 18 | a remark is given. |
Bram Moolenaar | 8a7d654 | 2020-01-26 15:56:19 +0100 | [diff] [blame] | 19 | |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 20 | 1. Variables |variables| |
| 21 | 1.1 Variable types |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 22 | 1.2 Function references |Funcref| |
Bram Moolenaar | 7c62692 | 2005-02-07 22:01:03 +0000 | [diff] [blame] | 23 | 1.3 Lists |Lists| |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 24 | 1.4 Dictionaries |Dictionaries| |
Bram Moolenaar | d896824 | 2019-01-15 22:51:57 +0100 | [diff] [blame] | 25 | 1.5 Blobs |Blobs| |
| 26 | 1.6 More about variables |more-variables| |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 27 | 2. Expression syntax |expression-syntax| |
| 28 | 3. Internal variable |internal-variables| |
| 29 | 4. Builtin Functions |functions| |
| 30 | 5. Defining functions |user-functions| |
| 31 | 6. Curly braces names |curly-braces-names| |
| 32 | 7. Commands |expression-commands| |
| 33 | 8. Exception handling |exception-handling| |
| 34 | 9. Examples |eval-examples| |
Bram Moolenaar | 558ca4a | 2019-04-04 18:15:38 +0200 | [diff] [blame] | 35 | 10. Vim script version |vimscript-version| |
| 36 | 11. No +eval feature |no-eval-feature| |
| 37 | 12. The sandbox |eval-sandbox| |
| 38 | 13. Textlock |textlock| |
Christian Brabandt | da4e433 | 2023-11-05 10:45:12 +0100 | [diff] [blame] | 39 | 14. Vim script library |vim-script-library| |
Bram Moolenaar | ed997ad | 2019-07-21 16:42:00 +0200 | [diff] [blame] | 40 | |
| 41 | Testing support is documented in |testing.txt|. |
| 42 | Profiling is documented at |profiling|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 43 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 44 | ============================================================================== |
| 45 | 1. Variables *variables* |
| 46 | |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 47 | 1.1 Variable types ~ |
Bram Moolenaar | f10911e | 2022-01-29 22:20:48 +0000 | [diff] [blame] | 48 | *E712* *E896* *E897* *E899* *E1098* |
| 49 | *E1107* *E1135* *E1138* |
Bram Moolenaar | 06fe74a | 2019-08-31 16:20:32 +0200 | [diff] [blame] | 50 | There are ten types of variables: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 51 | |
Bram Moolenaar | 664f3cf | 2019-12-07 16:03:51 +0100 | [diff] [blame] | 52 | *Number* *Integer* |
| 53 | Number A 32 or 64 bit signed number. |expr-number| |
Bram Moolenaar | f9706e9 | 2020-02-22 14:27:04 +0100 | [diff] [blame] | 54 | The number of bits is available in |v:numbersize|. |
Bram Moolenaar | 6f02b00 | 2021-01-10 20:22:54 +0100 | [diff] [blame] | 55 | Examples: -123 0x10 0177 0o177 0b1011 |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 56 | |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 57 | Float A floating point number. |floating-point-format| *Float* |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 58 | Examples: 123.456 1.15e-6 -1.1e3 |
| 59 | |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 60 | String A NUL terminated string of 8-bit unsigned characters (bytes). |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 61 | |expr-string| Examples: "ab\txx\"--" 'x-z''a,c' |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 62 | |
Bram Moolenaar | d896824 | 2019-01-15 22:51:57 +0100 | [diff] [blame] | 63 | List An ordered sequence of items, see |List| for details. |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 64 | Example: [1, 2, ['a', 'b']] |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 65 | |
Bram Moolenaar | 39a58ca | 2005-06-27 22:42:44 +0000 | [diff] [blame] | 66 | Dictionary An associative, unordered array: Each entry has a key and a |
| 67 | value. |Dictionary| |
Bram Moolenaar | d5abb4c | 2019-07-13 22:46:10 +0200 | [diff] [blame] | 68 | Examples: |
| 69 | {'blue': "#0000ff", 'red': "#ff0000"} |
Bram Moolenaar | 4c6d904 | 2019-07-16 22:04:02 +0200 | [diff] [blame] | 70 | #{blue: "#0000ff", red: "#ff0000"} |
Bram Moolenaar | 39a58ca | 2005-06-27 22:42:44 +0000 | [diff] [blame] | 71 | |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 72 | Funcref A reference to a function |Funcref|. |
| 73 | Example: function("strlen") |
Bram Moolenaar | 1d42961 | 2016-05-24 15:44:17 +0200 | [diff] [blame] | 74 | It can be bound to a dictionary and arguments, it then works |
| 75 | like a Partial. |
| 76 | Example: function("Callback", [arg], myDict) |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 77 | |
Bram Moolenaar | 02e83b4 | 2016-02-21 20:10:26 +0100 | [diff] [blame] | 78 | Special |v:false|, |v:true|, |v:none| and |v:null|. *Special* |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 79 | |
Bram Moolenaar | ebf7dfa | 2016-04-14 12:46:51 +0200 | [diff] [blame] | 80 | Job Used for a job, see |job_start()|. *Job* *Jobs* |
Bram Moolenaar | 38a5563 | 2016-02-15 22:07:32 +0100 | [diff] [blame] | 81 | |
Bram Moolenaar | ebf7dfa | 2016-04-14 12:46:51 +0200 | [diff] [blame] | 82 | Channel Used for a channel, see |ch_open()|. *Channel* *Channels* |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 83 | |
Bram Moolenaar | d896824 | 2019-01-15 22:51:57 +0100 | [diff] [blame] | 84 | Blob Binary Large Object. Stores any sequence of bytes. See |Blob| |
| 85 | for details |
Bram Moolenaar | 6e5ea8d | 2019-01-12 22:47:31 +0100 | [diff] [blame] | 86 | Example: 0zFF00ED015DAF |
| 87 | 0z is an empty Blob. |
| 88 | |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 89 | The Number and String types are converted automatically, depending on how they |
| 90 | are used. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 91 | |
| 92 | Conversion from a Number to a String is by making the ASCII representation of |
Bram Moolenaar | 24ea3ba | 2010-09-19 19:01:21 +0200 | [diff] [blame] | 93 | the Number. Examples: |
| 94 | Number 123 --> String "123" ~ |
| 95 | Number 0 --> String "0" ~ |
| 96 | Number -1 --> String "-1" ~ |
Bram Moolenaar | 00a927d | 2010-05-14 23:24:24 +0200 | [diff] [blame] | 97 | *octal* |
Bram Moolenaar | d43906d | 2020-07-20 21:31:32 +0200 | [diff] [blame] | 98 | Conversion from a String to a Number only happens in legacy Vim script, not in |
| 99 | Vim9 script. It is done by converting the first digits to a number. |
| 100 | Hexadecimal "0xf9", Octal "017" or "0o17", and Binary "0b10" |
Bram Moolenaar | 6f02b00 | 2021-01-10 20:22:54 +0100 | [diff] [blame] | 101 | numbers are recognized |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 102 | NOTE: when using |Vim9| script or |scriptversion-4| octal with a leading "0" |
| 103 | is not recognized. The 0o notation requires patch 8.2.0886. |
Bram Moolenaar | 6f02b00 | 2021-01-10 20:22:54 +0100 | [diff] [blame] | 104 | If the String doesn't start with digits, the result is zero. |
Bram Moolenaar | fa73534 | 2016-01-03 22:14:44 +0100 | [diff] [blame] | 105 | Examples: |
Bram Moolenaar | 24ea3ba | 2010-09-19 19:01:21 +0200 | [diff] [blame] | 106 | String "456" --> Number 456 ~ |
| 107 | String "6bar" --> Number 6 ~ |
| 108 | String "foo" --> Number 0 ~ |
| 109 | String "0xf1" --> Number 241 ~ |
| 110 | String "0100" --> Number 64 ~ |
Bram Moolenaar | c17e66c | 2020-06-02 21:38:22 +0200 | [diff] [blame] | 111 | String "0o100" --> Number 64 ~ |
Bram Moolenaar | fa73534 | 2016-01-03 22:14:44 +0100 | [diff] [blame] | 112 | String "0b101" --> Number 5 ~ |
Bram Moolenaar | 24ea3ba | 2010-09-19 19:01:21 +0200 | [diff] [blame] | 113 | String "-8" --> Number -8 ~ |
| 114 | String "+8" --> Number 0 ~ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 115 | |
| 116 | To force conversion from String to Number, add zero to it: > |
| 117 | :echo "0100" + 0 |
Bram Moolenaar | 97b2ad3 | 2006-03-18 21:40:56 +0000 | [diff] [blame] | 118 | < 64 ~ |
| 119 | |
| 120 | To avoid a leading zero to cause octal conversion, or for using a different |
| 121 | base, use |str2nr()|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 122 | |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 123 | *TRUE* *FALSE* *Boolean* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 124 | For boolean operators Numbers are used. Zero is FALSE, non-zero is TRUE. |
Bram Moolenaar | 6aa5729 | 2021-08-14 21:25:52 +0200 | [diff] [blame] | 125 | You can also use |v:false| and |v:true|, in Vim9 script |false| and |true|. |
Bram Moolenaar | 1c6737b | 2020-09-07 22:18:52 +0200 | [diff] [blame] | 126 | When TRUE is returned from a function it is the Number one, FALSE is the |
| 127 | number zero. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 128 | |
Bram Moolenaar | e381d3d | 2016-07-07 14:50:41 +0200 | [diff] [blame] | 129 | Note that in the command: > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 130 | :if "foo" |
Bram Moolenaar | e381d3d | 2016-07-07 14:50:41 +0200 | [diff] [blame] | 131 | :" NOT executed |
| 132 | "foo" is converted to 0, which means FALSE. If the string starts with a |
| 133 | non-zero number it means TRUE: > |
| 134 | :if "8foo" |
| 135 | :" executed |
| 136 | To test for a non-empty string, use empty(): > |
Bram Moolenaar | 3a0d809 | 2012-10-21 03:02:54 +0200 | [diff] [blame] | 137 | :if !empty("foo") |
Bram Moolenaar | 92f26c2 | 2020-10-03 20:17:30 +0200 | [diff] [blame] | 138 | |
| 139 | < *falsy* *truthy* |
| 140 | An expression can be used as a condition, ignoring the type and only using |
| 141 | whether the value is "sort of true" or "sort of false". Falsy is: |
| 142 | the number zero |
| 143 | empty string, blob, list or dictionary |
| 144 | Other values are truthy. Examples: |
| 145 | 0 falsy |
| 146 | 1 truthy |
| 147 | -1 truthy |
| 148 | 0.0 falsy |
| 149 | 0.1 truthy |
| 150 | '' falsy |
| 151 | 'x' truthy |
| 152 | [] falsy |
| 153 | [0] truthy |
| 154 | {} falsy |
| 155 | #{x: 1} truthy |
| 156 | 0z falsy |
| 157 | 0z00 truthy |
| 158 | |
Bram Moolenaar | e381d3d | 2016-07-07 14:50:41 +0200 | [diff] [blame] | 159 | *non-zero-arg* |
| 160 | Function arguments often behave slightly different from |TRUE|: If the |
| 161 | argument is present and it evaluates to a non-zero Number, |v:true| or a |
Bram Moolenaar | 64d8e25 | 2016-09-06 22:12:34 +0200 | [diff] [blame] | 162 | non-empty String, then the value is considered to be TRUE. |
Bram Moolenaar | 01164a6 | 2017-11-02 22:58:42 +0100 | [diff] [blame] | 163 | Note that " " and "0" are also non-empty strings, thus considered to be TRUE. |
| 164 | A List, Dictionary or Float is not a Number or String, thus evaluate to FALSE. |
Bram Moolenaar | e381d3d | 2016-07-07 14:50:41 +0200 | [diff] [blame] | 165 | |
Bram Moolenaar | 2f0936c | 2022-01-08 21:51:59 +0000 | [diff] [blame] | 166 | *E611* *E745* *E728* *E703* *E729* *E730* *E731* *E908* *E910* |
Bram Moolenaar | 7db29e4 | 2022-12-11 15:53:04 +0000 | [diff] [blame] | 167 | *E913* *E974* *E975* *E976* *E1319* *E1320* *E1321* *E1322* |
| 168 | *E1323* *E1324* |
| 169 | |List|, |Dictionary|, |Funcref|, |Job|, |Channel|, |Blob|, |Class| and |
| 170 | |object| types are not automatically converted. |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 171 | |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 172 | *E805* *E806* *E808* |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 173 | When mixing Number and Float the Number is converted to Float. Otherwise |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 174 | there is no automatic conversion of Float. You can use str2float() for String |
| 175 | to Float, printf() for Float to String and float2nr() for Float to Number. |
| 176 | |
Bram Moolenaar | 2f0936c | 2022-01-08 21:51:59 +0000 | [diff] [blame] | 177 | *E362* *E891* *E892* *E893* *E894* *E907* *E911* *E914* |
Bram Moolenaar | 13d5aee | 2016-01-21 23:36:05 +0100 | [diff] [blame] | 178 | When expecting a Float a Number can also be used, but nothing else. |
| 179 | |
Bram Moolenaar | f6f32c3 | 2016-03-12 19:03:59 +0100 | [diff] [blame] | 180 | *no-type-checking* |
| 181 | You will not get an error if you try to change the type of a variable. |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 182 | |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 183 | |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 184 | 1.2 Function references ~ |
Bram Moolenaar | 8a3b805 | 2022-06-26 12:21:15 +0100 | [diff] [blame] | 185 | *Funcref* *E695* *E718* *E1192* |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 186 | A Funcref variable is obtained with the |function()| function, the |funcref()| |
Bram Moolenaar | cfa8f9a | 2022-06-03 21:59:47 +0100 | [diff] [blame] | 187 | function, (in |Vim9| script) the name of a function, or created with the |
| 188 | lambda expression |expr-lambda|. It can be used in an expression in the place |
| 189 | of a function name, before the parenthesis around the arguments, to invoke the |
| 190 | function it refers to. Example in |Vim9| script: > |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 191 | |
Bram Moolenaar | cfa8f9a | 2022-06-03 21:59:47 +0100 | [diff] [blame] | 192 | :var Fn = MyFunc |
| 193 | :echo Fn() |
| 194 | |
| 195 | Legacy script: > |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 196 | :let Fn = function("MyFunc") |
| 197 | :echo Fn() |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 198 | < *E704* *E705* *E707* |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 199 | A Funcref variable must start with a capital, "s:", "w:", "t:" or "b:". You |
Bram Moolenaar | 7cba6c0 | 2013-09-05 22:13:31 +0200 | [diff] [blame] | 200 | can use "g:" but the following name must still start with a capital. You |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 201 | cannot have both a Funcref variable and a function with the same name. |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 202 | |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 203 | A special case is defining a function and directly assigning its Funcref to a |
| 204 | Dictionary entry. Example: > |
| 205 | :function dict.init() dict |
| 206 | : let self.val = 0 |
| 207 | :endfunction |
| 208 | |
| 209 | The key of the Dictionary can start with a lower case letter. The actual |
| 210 | function name is not used here. Also see |numbered-function|. |
| 211 | |
| 212 | A Funcref can also be used with the |:call| command: > |
| 213 | :call Fn() |
| 214 | :call dict.init() |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 215 | |
| 216 | The name of the referenced function can be obtained with |string()|. > |
Bram Moolenaar | 383f9bc | 2005-01-19 22:18:32 +0000 | [diff] [blame] | 217 | :let func = string(Fn) |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 218 | |
| 219 | You can use |call()| to invoke a Funcref and use a list variable for the |
| 220 | arguments: > |
Bram Moolenaar | 383f9bc | 2005-01-19 22:18:32 +0000 | [diff] [blame] | 221 | :let r = call(Fn, mylist) |
Bram Moolenaar | 1d42961 | 2016-05-24 15:44:17 +0200 | [diff] [blame] | 222 | < |
| 223 | *Partial* |
| 224 | A Funcref optionally binds a Dictionary and/or arguments. This is also called |
| 225 | a Partial. This is created by passing the Dictionary and/or arguments to |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 226 | function() or funcref(). When calling the function the Dictionary and/or |
| 227 | arguments will be passed to the function. Example: > |
Bram Moolenaar | 1d42961 | 2016-05-24 15:44:17 +0200 | [diff] [blame] | 228 | |
| 229 | let Cb = function('Callback', ['foo'], myDict) |
Bram Moolenaar | ba3ff53 | 2018-11-04 14:45:49 +0100 | [diff] [blame] | 230 | call Cb('bar') |
Bram Moolenaar | 1d42961 | 2016-05-24 15:44:17 +0200 | [diff] [blame] | 231 | |
| 232 | This will invoke the function as if using: > |
Bram Moolenaar | ba3ff53 | 2018-11-04 14:45:49 +0100 | [diff] [blame] | 233 | call myDict.Callback('foo', 'bar') |
Bram Moolenaar | 1d42961 | 2016-05-24 15:44:17 +0200 | [diff] [blame] | 234 | |
| 235 | This is very useful when passing a function around, e.g. in the arguments of |
| 236 | |ch_open()|. |
| 237 | |
| 238 | Note that binding a function to a Dictionary also happens when the function is |
| 239 | a member of the Dictionary: > |
| 240 | |
| 241 | let myDict.myFunction = MyFunction |
| 242 | call myDict.myFunction() |
| 243 | |
| 244 | Here MyFunction() will get myDict passed as "self". This happens when the |
| 245 | "myFunction" member is accessed. When making assigning "myFunction" to |
| 246 | otherDict and calling it, it will be bound to otherDict: > |
| 247 | |
| 248 | let otherDict.myFunction = myDict.myFunction |
| 249 | call otherDict.myFunction() |
| 250 | |
| 251 | Now "self" will be "otherDict". But when the dictionary was bound explicitly |
| 252 | this won't happen: > |
| 253 | |
| 254 | let myDict.myFunction = function(MyFunction, myDict) |
| 255 | let otherDict.myFunction = myDict.myFunction |
| 256 | call otherDict.myFunction() |
| 257 | |
Bram Moolenaar | d823fa9 | 2016-08-12 16:29:27 +0200 | [diff] [blame] | 258 | Here "self" will be "myDict", because it was bound explicitly. |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 259 | |
| 260 | |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 261 | 1.3 Lists ~ |
Bram Moolenaar | 7e38ea2 | 2014-04-05 22:55:53 +0200 | [diff] [blame] | 262 | *list* *List* *Lists* *E686* |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 263 | A List is an ordered sequence of items. An item can be of any type. Items |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 264 | can be accessed by their index number. Items can be added and removed at any |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 265 | position in the sequence. |
| 266 | |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 267 | |
| 268 | List creation ~ |
| 269 | *E696* *E697* |
Bram Moolenaar | cbaff5e | 2022-04-08 17:45:08 +0100 | [diff] [blame] | 270 | A List is created with a comma-separated list of items in square brackets. |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 271 | Examples: > |
| 272 | :let mylist = [1, two, 3, "four"] |
| 273 | :let emptylist = [] |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 274 | |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 275 | An item can be any expression. Using a List for an item creates a |
Bram Moolenaar | f9393ef | 2006-04-24 19:47:27 +0000 | [diff] [blame] | 276 | List of Lists: > |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 277 | :let nestlist = [[11, 12], [21, 22], [31, 32]] |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 278 | |
| 279 | An extra comma after the last item is ignored. |
| 280 | |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 281 | |
| 282 | List index ~ |
| 283 | *list-index* *E684* |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 284 | An item in the List can be accessed by putting the index in square brackets |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 285 | after the List. Indexes are zero-based, thus the first item has index zero. > |
| 286 | :let item = mylist[0] " get the first item: 1 |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 287 | :let item = mylist[2] " get the third item: 3 |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 288 | |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 289 | When the resulting item is a list this can be repeated: > |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 290 | :let item = nestlist[0][1] " get the first list, second item: 12 |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 291 | < |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 292 | A negative index is counted from the end. Index -1 refers to the last item in |
| 293 | the List, -2 to the last but one item, etc. > |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 294 | :let last = mylist[-1] " get the last item: "four" |
| 295 | |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 296 | To avoid an error for an invalid index use the |get()| function. When an item |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 297 | is not available it returns zero or the default value you specify: > |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 298 | :echo get(mylist, idx) |
| 299 | :echo get(mylist, idx, "NONE") |
| 300 | |
| 301 | |
| 302 | List concatenation ~ |
Bram Moolenaar | 3445320 | 2021-01-31 13:08:38 +0100 | [diff] [blame] | 303 | *list-concatenation* |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 304 | Two lists can be concatenated with the "+" operator: > |
| 305 | :let longlist = mylist + [5, 6] |
zeertzjq | b817014 | 2024-02-08 11:21:44 +0100 | [diff] [blame] | 306 | :let longlist = [5, 6] + mylist |
| 307 | To prepend or append an item, turn it into a list by putting [] around it. |
| 308 | |
| 309 | A list can be concatenated with another one in-place using |:let+=| or |
| 310 | |extend()|: > |
Bram Moolenaar | 383f9bc | 2005-01-19 22:18:32 +0000 | [diff] [blame] | 311 | :let mylist += [7, 8] |
qeatzy | c9c2e2d | 2024-02-07 17:52:25 +0100 | [diff] [blame] | 312 | :call extend(mylist, [7, 8]) |
zeertzjq | b817014 | 2024-02-08 11:21:44 +0100 | [diff] [blame] | 313 | < |
| 314 | See |list-modification| below for more about changing a list in-place. |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 315 | |
| 316 | |
| 317 | Sublist ~ |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 318 | *sublist* |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 319 | A part of the List can be obtained by specifying the first and last index, |
| 320 | separated by a colon in square brackets: > |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 321 | :let shortlist = mylist[2:-1] " get List [3, "four"] |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 322 | |
| 323 | Omitting the first index is similar to zero. Omitting the last index is |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 324 | similar to -1. > |
Bram Moolenaar | 540d6e3 | 2005-01-09 21:20:18 +0000 | [diff] [blame] | 325 | :let endlist = mylist[2:] " from item 2 to the end: [3, "four"] |
| 326 | :let shortlist = mylist[2:2] " List with one item: [3] |
| 327 | :let otherlist = mylist[:] " make a copy of the List |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 328 | |
Bram Moolenaar | 6601b62 | 2021-01-13 21:47:15 +0100 | [diff] [blame] | 329 | Notice that the last index is inclusive. If you prefer using an exclusive |
| 330 | index use the |slice()| method. |
| 331 | |
Bram Moolenaar | f9393ef | 2006-04-24 19:47:27 +0000 | [diff] [blame] | 332 | If the first index is beyond the last item of the List or the second item is |
| 333 | before the first item, the result is an empty list. There is no error |
| 334 | message. |
| 335 | |
| 336 | If the second index is equal to or greater than the length of the list the |
| 337 | length minus one is used: > |
Bram Moolenaar | 9e54a0e | 2006-04-14 20:42:25 +0000 | [diff] [blame] | 338 | :let mylist = [0, 1, 2, 3] |
| 339 | :echo mylist[2:8] " result: [2, 3] |
| 340 | |
Bram Moolenaar | a7fc010 | 2005-05-18 22:17:12 +0000 | [diff] [blame] | 341 | NOTE: mylist[s:e] means using the variable "s:e" as index. Watch out for |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 342 | using a single letter variable before the ":". Insert a space when needed: |
Bram Moolenaar | a7fc010 | 2005-05-18 22:17:12 +0000 | [diff] [blame] | 343 | mylist[s : e]. |
| 344 | |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 345 | |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 346 | List identity ~ |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 347 | *list-identity* |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 348 | When variable "aa" is a list and you assign it to another variable "bb", both |
| 349 | variables refer to the same list. Thus changing the list "aa" will also |
| 350 | change "bb": > |
| 351 | :let aa = [1, 2, 3] |
| 352 | :let bb = aa |
| 353 | :call add(aa, 4) |
| 354 | :echo bb |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 355 | < [1, 2, 3, 4] |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 356 | |
| 357 | Making a copy of a list is done with the |copy()| function. Using [:] also |
| 358 | works, as explained above. This creates a shallow copy of the list: Changing |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 359 | a list item in the list will also change the item in the copied list: > |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 360 | :let aa = [[1, 'a'], 2, 3] |
| 361 | :let bb = copy(aa) |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 362 | :call add(aa, 4) |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 363 | :let aa[0][1] = 'aaa' |
| 364 | :echo aa |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 365 | < [[1, aaa], 2, 3, 4] > |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 366 | :echo bb |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 367 | < [[1, aaa], 2, 3] |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 368 | |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 369 | To make a completely independent list use |deepcopy()|. This also makes a |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 370 | copy of the values in the list, recursively. Up to a hundred levels deep. |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 371 | |
| 372 | The operator "is" can be used to check if two variables refer to the same |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 373 | List. "isnot" does the opposite. In contrast "==" compares if two lists have |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 374 | the same value. > |
| 375 | :let alist = [1, 2, 3] |
| 376 | :let blist = [1, 2, 3] |
| 377 | :echo alist is blist |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 378 | < 0 > |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 379 | :echo alist == blist |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 380 | < 1 |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 381 | |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 382 | Note about comparing lists: Two lists are considered equal if they have the |
| 383 | same length and all items compare equal, as with using "==". There is one |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 384 | exception: When comparing a number with a string they are considered |
| 385 | different. There is no automatic type conversion, as with using "==" on |
| 386 | variables. Example: > |
| 387 | echo 4 == "4" |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 388 | < 1 > |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 389 | echo [4] == ["4"] |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 390 | < 0 |
| 391 | |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 392 | Thus comparing Lists is more strict than comparing numbers and strings. You |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 393 | can compare simple values this way too by putting them in a list: > |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 394 | |
| 395 | :let a = 5 |
| 396 | :let b = "5" |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 397 | :echo a == b |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 398 | < 1 > |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 399 | :echo [a] == [b] |
Bram Moolenaar | 7d1f5db | 2005-07-03 21:39:27 +0000 | [diff] [blame] | 400 | < 0 |
Bram Moolenaar | 9ba0eb8 | 2005-06-13 22:28:56 +0000 | [diff] [blame] | 401 | |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 402 | |
| 403 | List unpack ~ |
| 404 | |
| 405 | To unpack the items in a list to individual variables, put the variables in |
| 406 | square brackets, like list items: > |
| 407 | :let [var1, var2] = mylist |
| 408 | |
| 409 | When the number of variables does not match the number of items in the list |
| 410 | this produces an error. To handle any extra items from the list append ";" |
| 411 | and a variable name: > |
| 412 | :let [var1, var2; rest] = mylist |
| 413 | |
| 414 | This works like: > |
| 415 | :let var1 = mylist[0] |
| 416 | :let var2 = mylist[1] |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 417 | :let rest = mylist[2:] |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 418 | |
| 419 | Except that there is no error if there are only two items. "rest" will be an |
| 420 | empty list then. |
| 421 | |
| 422 | |
| 423 | List modification ~ |
| 424 | *list-modification* |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 425 | To change a specific item of a list use |:let| this way: > |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 426 | :let list[4] = "four" |
| 427 | :let listlist[0][3] = item |
| 428 | |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 429 | To change part of a list you can specify the first and last item to be |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 430 | modified. The value must at least have the number of items in the range: > |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 431 | :let list[3:5] = [3, 4, 5] |
| 432 | |
zeertzjq | b817014 | 2024-02-08 11:21:44 +0100 | [diff] [blame] | 433 | To add items to a List in-place, you can use |:let+=| (|list-concatenation|): > |
Yegappan Lakshmanan | 1af3563 | 2024-02-06 11:03:36 +0100 | [diff] [blame] | 434 | :let listA = [1, 2] |
| 435 | :let listA += [3, 4] |
| 436 | < |
| 437 | When two variables refer to the same List, changing one List in-place will |
| 438 | cause the referenced List to be changed in-place: > |
| 439 | :let listA = [1, 2] |
| 440 | :let listB = listA |
| 441 | :let listB += [3, 4] |
| 442 | :echo listA |
| 443 | [1, 2, 3, 4] |
| 444 | < |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 445 | Adding and removing items from a list is done with functions. Here are a few |
| 446 | examples: > |
| 447 | :call insert(list, 'a') " prepend item 'a' |
| 448 | :call insert(list, 'a', 3) " insert item 'a' before list[3] |
| 449 | :call add(list, "new") " append String item |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 450 | :call add(list, [1, 2]) " append a List as one new item |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 451 | :call extend(list, [1, 2]) " extend the list with two more items |
| 452 | :let i = remove(list, 3) " remove item 3 |
Bram Moolenaar | 9cd1516 | 2005-01-16 22:02:49 +0000 | [diff] [blame] | 453 | :unlet list[3] " idem |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 454 | :let l = remove(list, 3, -1) " remove items 3 to last item |
Bram Moolenaar | 9cd1516 | 2005-01-16 22:02:49 +0000 | [diff] [blame] | 455 | :unlet list[3 : ] " idem |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 456 | :call filter(list, 'v:val !~ "x"') " remove items with an 'x' |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 457 | |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 458 | Changing the order of items in a list: > |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 459 | :call sort(list) " sort a list alphabetically |
| 460 | :call reverse(list) " reverse the order of items |
Bram Moolenaar | 327aa02 | 2014-03-25 18:24:23 +0100 | [diff] [blame] | 461 | :call uniq(sort(list)) " sort and remove duplicates |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 462 | |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 463 | |
| 464 | For loop ~ |
| 465 | |
Bram Moolenaar | 74e54fc | 2021-03-26 20:41:29 +0100 | [diff] [blame] | 466 | The |:for| loop executes commands for each item in a List, String or Blob. |
| 467 | A variable is set to each item in sequence. Example with a List: > |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 468 | :for item in mylist |
| 469 | : call Doit(item) |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 470 | :endfor |
| 471 | |
| 472 | This works like: > |
| 473 | :let index = 0 |
| 474 | :while index < len(mylist) |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 475 | : let item = mylist[index] |
| 476 | : :call Doit(item) |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 477 | : let index = index + 1 |
| 478 | :endwhile |
| 479 | |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 480 | If all you want to do is modify each item in the list then the |map()| |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 481 | function will be a simpler method than a for loop. |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 482 | |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 483 | Just like the |:let| command, |:for| also accepts a list of variables. This |
Bram Moolenaar | 74e54fc | 2021-03-26 20:41:29 +0100 | [diff] [blame] | 484 | requires the argument to be a List of Lists. > |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 485 | :for [lnum, col] in [[1, 3], [2, 8], [3, 0]] |
| 486 | : call Doit(lnum, col) |
| 487 | :endfor |
| 488 | |
| 489 | This works like a |:let| command is done for each list item. Again, the types |
| 490 | must remain the same to avoid an error. |
| 491 | |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 492 | It is also possible to put remaining items in a List variable: > |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 493 | :for [i, j; rest] in listlist |
| 494 | : call Doit(i, j) |
| 495 | : if !empty(rest) |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 496 | : echo "remainder: " .. string(rest) |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 497 | : endif |
| 498 | :endfor |
| 499 | |
Bram Moolenaar | 74e54fc | 2021-03-26 20:41:29 +0100 | [diff] [blame] | 500 | For a Blob one byte at a time is used. |
| 501 | |
| 502 | For a String one character, including any composing characters, is used as a |
| 503 | String. Example: > |
| 504 | for c in text |
| 505 | echo 'This character is ' .. c |
| 506 | endfor |
| 507 | |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 508 | |
| 509 | List functions ~ |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 510 | *E714* |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 511 | Functions that are useful with a List: > |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 512 | :let r = call(funcname, list) " call a function with an argument list |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 513 | :if empty(list) " check if list is empty |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 514 | :let l = len(list) " number of items in list |
| 515 | :let big = max(list) " maximum value in list |
| 516 | :let small = min(list) " minimum value in list |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 517 | :let xs = count(list, 'x') " count nr of times 'x' appears in list |
| 518 | :let i = index(list, 'x') " index of first 'x' in list |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 519 | :let lines = getline(1, 10) " get ten text lines from buffer |
| 520 | :call append('$', lines) " append text lines in buffer |
Bram Moolenaar | 5f2bb9f | 2005-01-11 21:29:04 +0000 | [diff] [blame] | 521 | :let list = split("a b c") " create list from items in a string |
| 522 | :let string = join(list, ', ') " create string from list items |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 523 | :let s = string(list) " String representation of list |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 524 | :call map(list, '">> " .. v:val') " prepend ">> " to each item |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 525 | |
Bram Moolenaar | 0cb032e | 2005-04-23 20:52:00 +0000 | [diff] [blame] | 526 | Don't forget that a combination of features can make things simple. For |
| 527 | example, to add up all the numbers in a list: > |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 528 | :exe 'let sum = ' .. join(nrlist, '+') |
Bram Moolenaar | 0cb032e | 2005-04-23 20:52:00 +0000 | [diff] [blame] | 529 | |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 530 | |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 531 | 1.4 Dictionaries ~ |
Bram Moolenaar | d896824 | 2019-01-15 22:51:57 +0100 | [diff] [blame] | 532 | *dict* *Dict* *Dictionaries* *Dictionary* |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 533 | A Dictionary is an associative array: Each entry has a key and a value. The |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 534 | entry can be located with the key. The entries are stored without a specific |
| 535 | ordering. |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 536 | |
| 537 | |
| 538 | Dictionary creation ~ |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 539 | *E720* *E721* *E722* *E723* |
Bram Moolenaar | cbaff5e | 2022-04-08 17:45:08 +0100 | [diff] [blame] | 540 | A Dictionary is created with a comma-separated list of entries in curly |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 541 | braces. Each entry has a key and a value, separated by a colon. Each key can |
| 542 | only appear once. Examples: > |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 543 | :let mydict = {1: 'one', 2: 'two', 3: 'three'} |
| 544 | :let emptydict = {} |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 545 | < *E713* *E716* *E717* |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 546 | A key is always a String. You can use a Number, it will be converted to a |
| 547 | String automatically. Thus the String '4' and the number 4 will find the same |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 548 | entry. Note that the String '04' and the Number 04 are different, since the |
Bram Moolenaar | d899e51 | 2022-05-07 21:54:03 +0100 | [diff] [blame] | 549 | Number will be converted to the String '4', leading zeros are dropped. The |
| 550 | empty string can also be used as a key. |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 551 | |
Bram Moolenaar | d799daa | 2022-06-20 11:17:32 +0100 | [diff] [blame] | 552 | In |Vim9| script a literal key can be used if it consists only of alphanumeric |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 553 | characters, underscore and dash, see |vim9-literal-dict|. |
Bram Moolenaar | 56c860c | 2019-08-17 20:09:31 +0200 | [diff] [blame] | 554 | *literal-Dict* *#{}* |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 555 | To avoid having to put quotes around every key the #{} form can be used in |
| 556 | legacy script. This does require the key to consist only of ASCII letters, |
| 557 | digits, '-' and '_'. Example: > |
Bram Moolenaar | 10455d4 | 2019-11-21 15:36:18 +0100 | [diff] [blame] | 558 | :let mydict = #{zero: 0, one_key: 1, two-key: 2, 333: 3} |
Bram Moolenaar | 4c6d904 | 2019-07-16 22:04:02 +0200 | [diff] [blame] | 559 | Note that 333 here is the string "333". Empty keys are not possible with #{}. |
Bram Moolenaar | d899e51 | 2022-05-07 21:54:03 +0100 | [diff] [blame] | 560 | In |Vim9| script the #{} form cannot be used because it can be confused with |
| 561 | the start of a comment. |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 562 | |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 563 | A value can be any expression. Using a Dictionary for a value creates a |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 564 | nested Dictionary: > |
| 565 | :let nestdict = {1: {11: 'a', 12: 'b'}, 2: {21: 'c'}} |
| 566 | |
| 567 | An extra comma after the last entry is ignored. |
| 568 | |
| 569 | |
| 570 | Accessing entries ~ |
| 571 | |
| 572 | The normal way to access an entry is by putting the key in square brackets: > |
| 573 | :let val = mydict["one"] |
| 574 | :let mydict["four"] = 4 |
| 575 | |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 576 | You can add new entries to an existing Dictionary this way, unlike Lists. |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 577 | |
| 578 | For keys that consist entirely of letters, digits and underscore the following |
| 579 | form can be used |expr-entry|: > |
| 580 | :let val = mydict.one |
| 581 | :let mydict.four = 4 |
| 582 | |
| 583 | Since an entry can be any type, also a List and a Dictionary, the indexing and |
| 584 | key lookup can be repeated: > |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 585 | :echo dict.key[idx].key |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 586 | |
| 587 | |
| 588 | Dictionary to List conversion ~ |
| 589 | |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 590 | You may want to loop over the entries in a dictionary. For this you need to |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 591 | turn the Dictionary into a List and pass it to |:for|. |
| 592 | |
| 593 | Most often you want to loop over the keys, using the |keys()| function: > |
| 594 | :for key in keys(mydict) |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 595 | : echo key .. ': ' .. mydict[key] |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 596 | :endfor |
| 597 | |
| 598 | The List of keys is unsorted. You may want to sort them first: > |
| 599 | :for key in sort(keys(mydict)) |
| 600 | |
| 601 | To loop over the values use the |values()| function: > |
| 602 | :for v in values(mydict) |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 603 | : echo "value: " .. v |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 604 | :endfor |
| 605 | |
| 606 | If you want both the key and the value use the |items()| function. It returns |
Bram Moolenaar | d47d522 | 2018-12-09 20:43:55 +0100 | [diff] [blame] | 607 | a List in which each item is a List with two items, the key and the value: > |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 608 | :for [key, value] in items(mydict) |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 609 | : echo key .. ': ' .. value |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 610 | :endfor |
| 611 | |
| 612 | |
| 613 | Dictionary identity ~ |
Bram Moolenaar | 7c62692 | 2005-02-07 22:01:03 +0000 | [diff] [blame] | 614 | *dict-identity* |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 615 | Just like Lists you need to use |copy()| and |deepcopy()| to make a copy of a |
| 616 | Dictionary. Otherwise, assignment results in referring to the same |
| 617 | Dictionary: > |
| 618 | :let onedict = {'a': 1, 'b': 2} |
| 619 | :let adict = onedict |
| 620 | :let adict['a'] = 11 |
| 621 | :echo onedict['a'] |
| 622 | 11 |
| 623 | |
Bram Moolenaar | f3bd51a | 2005-06-14 22:11:18 +0000 | [diff] [blame] | 624 | Two Dictionaries compare equal if all the key-value pairs compare equal. For |
| 625 | more info see |list-identity|. |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 626 | |
| 627 | |
| 628 | Dictionary modification ~ |
| 629 | *dict-modification* |
| 630 | To change an already existing entry of a Dictionary, or to add a new entry, |
| 631 | use |:let| this way: > |
| 632 | :let dict[4] = "four" |
| 633 | :let dict['one'] = item |
| 634 | |
Bram Moolenaar | 9cd1516 | 2005-01-16 22:02:49 +0000 | [diff] [blame] | 635 | Removing an entry from a Dictionary is done with |remove()| or |:unlet|. |
| 636 | Three ways to remove the entry with key "aaa" from dict: > |
| 637 | :let i = remove(dict, 'aaa') |
| 638 | :unlet dict.aaa |
| 639 | :unlet dict['aaa'] |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 640 | |
| 641 | Merging a Dictionary with another is done with |extend()|: > |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 642 | :call extend(adict, bdict) |
| 643 | This extends adict with all entries from bdict. Duplicate keys cause entries |
| 644 | in adict to be overwritten. An optional third argument can change this. |
Bram Moolenaar | 383f9bc | 2005-01-19 22:18:32 +0000 | [diff] [blame] | 645 | Note that the order of entries in a Dictionary is irrelevant, thus don't |
| 646 | expect ":echo adict" to show the items from bdict after the older entries in |
| 647 | adict. |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 648 | |
| 649 | Weeding out entries from a Dictionary can be done with |filter()|: > |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 650 | :call filter(dict, 'v:val =~ "x"') |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 651 | This removes all entries from "dict" with a value not matching 'x'. |
Bram Moolenaar | 388a5d4 | 2020-05-26 21:20:45 +0200 | [diff] [blame] | 652 | This can also be used to remove all entries: > |
| 653 | call filter(dict, 0) |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 654 | |
Bram Moolenaar | 86b4816 | 2022-12-06 18:20:10 +0000 | [diff] [blame] | 655 | In some situations it is not allowed to remove or add entries to a Dictionary. |
| 656 | Especially when iterating over all the entries. You will get *E1313* or |
| 657 | another error in that case. |
| 658 | |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 659 | |
| 660 | Dictionary function ~ |
Bram Moolenaar | 26402cb | 2013-02-20 21:26:00 +0100 | [diff] [blame] | 661 | *Dictionary-function* *self* *E725* *E862* |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 662 | When a function is defined with the "dict" attribute it can be used in a |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 663 | special way with a dictionary. Example: > |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 664 | :function Mylen() dict |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 665 | : return len(self.data) |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 666 | :endfunction |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 667 | :let mydict = {'data': [0, 1, 2, 3], 'len': function("Mylen")} |
| 668 | :echo mydict.len() |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 669 | |
| 670 | This is like a method in object oriented programming. The entry in the |
| 671 | Dictionary is a |Funcref|. The local variable "self" refers to the dictionary |
Bram Moolenaar | 86b4816 | 2022-12-06 18:20:10 +0000 | [diff] [blame] | 672 | the function was invoked from. When using |Vim9| script you can use classes |
| 673 | and objects, see `:class`. |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 674 | |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 675 | It is also possible to add a function without the "dict" attribute as a |
| 676 | Funcref to a Dictionary, but the "self" variable is not available then. |
| 677 | |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 678 | *numbered-function* *anonymous-function* |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 679 | To avoid the extra name for the function it can be defined and directly |
| 680 | assigned to a Dictionary in this way: > |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 681 | :let mydict = {'data': [0, 1, 2, 3]} |
Bram Moolenaar | 5a5f459 | 2015-04-13 12:43:06 +0200 | [diff] [blame] | 682 | :function mydict.len() |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 683 | : return len(self.data) |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 684 | :endfunction |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 685 | :echo mydict.len() |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 686 | |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 687 | The function will then get a number and the value of dict.len is a |Funcref| |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 688 | that references this function. The function can only be used through a |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 689 | |Funcref|. It will automatically be deleted when there is no |Funcref| |
| 690 | remaining that refers to it. |
| 691 | |
| 692 | It is not necessary to use the "dict" attribute for a numbered function. |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 693 | |
Bram Moolenaar | 1affd72 | 2010-08-04 17:49:30 +0200 | [diff] [blame] | 694 | If you get an error for a numbered function, you can find out what it is with |
| 695 | a trick. Assuming the function is 42, the command is: > |
Bram Moolenaar | 34cc7d8 | 2021-09-21 20:09:51 +0200 | [diff] [blame] | 696 | :function g:42 |
Bram Moolenaar | 1affd72 | 2010-08-04 17:49:30 +0200 | [diff] [blame] | 697 | |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 698 | |
| 699 | Functions for Dictionaries ~ |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 700 | *E715* |
| 701 | Functions that can be used with a Dictionary: > |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 702 | :if has_key(dict, 'foo') " TRUE if dict has entry with key "foo" |
| 703 | :if empty(dict) " TRUE if dict is empty |
| 704 | :let l = len(dict) " number of items in dict |
| 705 | :let big = max(dict) " maximum value in dict |
| 706 | :let small = min(dict) " minimum value in dict |
| 707 | :let xs = count(dict, 'x') " count nr of times 'x' appears in dict |
| 708 | :let s = string(dict) " String representation of dict |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 709 | :call map(dict, '">> " .. v:val') " prepend ">> " to each item |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 710 | |
| 711 | |
Bram Moolenaar | d896824 | 2019-01-15 22:51:57 +0100 | [diff] [blame] | 712 | 1.5 Blobs ~ |
| 713 | *blob* *Blob* *Blobs* *E978* |
Bram Moolenaar | aff7491 | 2019-03-30 18:11:49 +0100 | [diff] [blame] | 714 | A Blob is a binary object. It can be used to read an image from a file and |
| 715 | send it over a channel, for example. |
| 716 | |
| 717 | A Blob mostly behaves like a |List| of numbers, where each number has the |
| 718 | value of an 8-bit byte, from 0 to 255. |
Bram Moolenaar | d896824 | 2019-01-15 22:51:57 +0100 | [diff] [blame] | 719 | |
| 720 | |
| 721 | Blob creation ~ |
| 722 | |
| 723 | A Blob can be created with a |blob-literal|: > |
| 724 | :let b = 0zFF00ED015DAF |
Bram Moolenaar | 0d17f0d | 2019-01-22 22:20:38 +0100 | [diff] [blame] | 725 | Dots can be inserted between bytes (pair of hex characters) for readability, |
| 726 | they don't change the value: > |
| 727 | :let b = 0zFF00.ED01.5DAF |
Bram Moolenaar | d896824 | 2019-01-15 22:51:57 +0100 | [diff] [blame] | 728 | |
| 729 | A blob can be read from a file with |readfile()| passing the {type} argument |
| 730 | set to "B", for example: > |
| 731 | :let b = readfile('image.png', 'B') |
| 732 | |
| 733 | A blob can be read from a channel with the |ch_readblob()| function. |
| 734 | |
| 735 | |
| 736 | Blob index ~ |
| 737 | *blob-index* *E979* |
| 738 | A byte in the Blob can be accessed by putting the index in square brackets |
| 739 | after the Blob. Indexes are zero-based, thus the first byte has index zero. > |
| 740 | :let myblob = 0z00112233 |
| 741 | :let byte = myblob[0] " get the first byte: 0x00 |
| 742 | :let byte = myblob[2] " get the third byte: 0x22 |
| 743 | |
| 744 | A negative index is counted from the end. Index -1 refers to the last byte in |
| 745 | the Blob, -2 to the last but one byte, etc. > |
| 746 | :let last = myblob[-1] " get the last byte: 0x33 |
| 747 | |
| 748 | To avoid an error for an invalid index use the |get()| function. When an item |
| 749 | is not available it returns -1 or the default value you specify: > |
| 750 | :echo get(myblob, idx) |
| 751 | :echo get(myblob, idx, 999) |
| 752 | |
| 753 | |
Bram Moolenaar | 5e66b42 | 2019-01-24 21:58:10 +0100 | [diff] [blame] | 754 | Blob iteration ~ |
| 755 | |
| 756 | The |:for| loop executes commands for each byte of a Blob. The loop variable is |
| 757 | set to each byte in the Blob. Example: > |
| 758 | :for byte in 0z112233 |
| 759 | : call Doit(byte) |
| 760 | :endfor |
| 761 | This calls Doit() with 0x11, 0x22 and 0x33. |
| 762 | |
| 763 | |
Bram Moolenaar | d896824 | 2019-01-15 22:51:57 +0100 | [diff] [blame] | 764 | Blob concatenation ~ |
zeertzjq | b817014 | 2024-02-08 11:21:44 +0100 | [diff] [blame] | 765 | *blob-concatenation* |
Bram Moolenaar | d896824 | 2019-01-15 22:51:57 +0100 | [diff] [blame] | 766 | Two blobs can be concatenated with the "+" operator: > |
| 767 | :let longblob = myblob + 0z4455 |
zeertzjq | b817014 | 2024-02-08 11:21:44 +0100 | [diff] [blame] | 768 | :let longblob = 0z4455 + myblob |
| 769 | < |
| 770 | A blob can be concatenated with another one in-place using |:let+=|: > |
Bram Moolenaar | d896824 | 2019-01-15 22:51:57 +0100 | [diff] [blame] | 771 | :let myblob += 0z6677 |
zeertzjq | b817014 | 2024-02-08 11:21:44 +0100 | [diff] [blame] | 772 | < |
| 773 | See |blob-modification| below for more about changing a blob in-place. |
Bram Moolenaar | d896824 | 2019-01-15 22:51:57 +0100 | [diff] [blame] | 774 | |
| 775 | |
| 776 | Part of a blob ~ |
| 777 | |
| 778 | A part of the Blob can be obtained by specifying the first and last index, |
| 779 | separated by a colon in square brackets: > |
| 780 | :let myblob = 0z00112233 |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 781 | :let shortblob = myblob[1:2] " get 0z1122 |
Bram Moolenaar | d896824 | 2019-01-15 22:51:57 +0100 | [diff] [blame] | 782 | :let shortblob = myblob[2:-1] " get 0z2233 |
| 783 | |
| 784 | Omitting the first index is similar to zero. Omitting the last index is |
| 785 | similar to -1. > |
| 786 | :let endblob = myblob[2:] " from item 2 to the end: 0z2233 |
| 787 | :let shortblob = myblob[2:2] " Blob with one byte: 0z22 |
| 788 | :let otherblob = myblob[:] " make a copy of the Blob |
| 789 | |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 790 | If the first index is beyond the last byte of the Blob or the second index is |
Bram Moolenaar | aa5df7e | 2019-02-03 14:53:10 +0100 | [diff] [blame] | 791 | before the first index, the result is an empty Blob. There is no error |
Bram Moolenaar | d896824 | 2019-01-15 22:51:57 +0100 | [diff] [blame] | 792 | message. |
| 793 | |
| 794 | If the second index is equal to or greater than the length of the list the |
| 795 | length minus one is used: > |
| 796 | :echo myblob[2:8] " result: 0z2233 |
| 797 | |
| 798 | |
| 799 | Blob modification ~ |
Bram Moolenaar | a2baa73 | 2022-02-04 16:09:54 +0000 | [diff] [blame] | 800 | *blob-modification* *E1182* *E1184* |
Bram Moolenaar | d896824 | 2019-01-15 22:51:57 +0100 | [diff] [blame] | 801 | To change a specific byte of a blob use |:let| this way: > |
| 802 | :let blob[4] = 0x44 |
| 803 | |
| 804 | When the index is just one beyond the end of the Blob, it is appended. Any |
| 805 | higher index is an error. |
| 806 | |
| 807 | To change a sequence of bytes the [:] notation can be used: > |
| 808 | let blob[1:3] = 0z445566 |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 809 | The length of the replaced bytes must be exactly the same as the value |
Bram Moolenaar | d896824 | 2019-01-15 22:51:57 +0100 | [diff] [blame] | 810 | provided. *E972* |
| 811 | |
| 812 | To change part of a blob you can specify the first and last byte to be |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 813 | modified. The value must have the same number of bytes in the range: > |
| 814 | :let blob[3:5] = 0z334455 |
Bram Moolenaar | d896824 | 2019-01-15 22:51:57 +0100 | [diff] [blame] | 815 | |
zeertzjq | b817014 | 2024-02-08 11:21:44 +0100 | [diff] [blame] | 816 | To add items to a Blob in-place, you can use |:let+=| (|blob-concatenation|): > |
| 817 | :let blobA = 0z1122 |
| 818 | :let blobA += 0z3344 |
| 819 | < |
| 820 | When two variables refer to the same Blob, changing one Blob in-place will |
| 821 | cause the referenced Blob to be changed in-place: > |
| 822 | :let blobA = 0z1122 |
| 823 | :let blobB = blobA |
| 824 | :let blobB += 0z3344 |
| 825 | :echo blobA |
| 826 | 0z11223344 |
| 827 | < |
Bram Moolenaar | d896824 | 2019-01-15 22:51:57 +0100 | [diff] [blame] | 828 | You can also use the functions |add()|, |remove()| and |insert()|. |
| 829 | |
| 830 | |
| 831 | Blob identity ~ |
| 832 | |
| 833 | Blobs can be compared for equality: > |
| 834 | if blob == 0z001122 |
| 835 | And for equal identity: > |
| 836 | if blob is otherblob |
| 837 | < *blob-identity* *E977* |
| 838 | When variable "aa" is a Blob and you assign it to another variable "bb", both |
| 839 | variables refer to the same Blob. Then the "is" operator returns true. |
| 840 | |
| 841 | When making a copy using [:] or |copy()| the values are the same, but the |
| 842 | identity is different: > |
| 843 | :let blob = 0z112233 |
| 844 | :let blob2 = blob |
| 845 | :echo blob == blob2 |
| 846 | < 1 > |
| 847 | :echo blob is blob2 |
| 848 | < 1 > |
| 849 | :let blob3 = blob[:] |
| 850 | :echo blob == blob3 |
| 851 | < 1 > |
| 852 | :echo blob is blob3 |
| 853 | < 0 |
| 854 | |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 855 | Making a copy of a Blob is done with the |copy()| function. Using [:] also |
Bram Moolenaar | d896824 | 2019-01-15 22:51:57 +0100 | [diff] [blame] | 856 | works, as explained above. |
| 857 | |
| 858 | |
| 859 | 1.6 More about variables ~ |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 860 | *more-variables* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 861 | If you need to know the type of a variable or expression, use the |type()| |
| 862 | function. |
| 863 | |
| 864 | When the '!' flag is included in the 'viminfo' option, global variables that |
| 865 | start with an uppercase letter, and don't contain a lowercase letter, are |
| 866 | stored in the viminfo file |viminfo-file|. |
| 867 | |
| 868 | When the 'sessionoptions' option contains "global", global variables that |
| 869 | start with an uppercase letter and contain at least one lowercase letter are |
| 870 | stored in the session file |session-file|. |
| 871 | |
| 872 | variable name can be stored where ~ |
| 873 | my_var_6 not |
| 874 | My_Var_6 session file |
| 875 | MY_VAR_6 viminfo file |
| 876 | |
| 877 | |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 878 | In legacy script it is possible to form a variable name with curly braces, see |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 879 | |curly-braces-names|. |
| 880 | |
| 881 | ============================================================================== |
| 882 | 2. Expression syntax *expression-syntax* |
Bram Moolenaar | f10911e | 2022-01-29 22:20:48 +0000 | [diff] [blame] | 883 | *E1143* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 884 | Expression syntax summary, from least to most significant: |
| 885 | |
Bram Moolenaar | 50ba526 | 2016-09-22 22:33:02 +0200 | [diff] [blame] | 886 | |expr1| expr2 |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 887 | expr2 ? expr1 : expr1 if-then-else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 888 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 889 | |expr2| expr3 |
Bram Moolenaar | 0f248b0 | 2019-04-04 15:36:05 +0200 | [diff] [blame] | 890 | expr3 || expr3 ... logical OR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 891 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 892 | |expr3| expr4 |
Bram Moolenaar | 0f248b0 | 2019-04-04 15:36:05 +0200 | [diff] [blame] | 893 | expr4 && expr4 ... logical AND |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 894 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 895 | |expr4| expr5 |
| 896 | expr5 == expr5 equal |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 897 | expr5 != expr5 not equal |
| 898 | expr5 > expr5 greater than |
| 899 | expr5 >= expr5 greater than or equal |
| 900 | expr5 < expr5 smaller than |
| 901 | expr5 <= expr5 smaller than or equal |
| 902 | expr5 =~ expr5 regexp matches |
| 903 | expr5 !~ expr5 regexp doesn't match |
| 904 | |
| 905 | expr5 ==? expr5 equal, ignoring case |
| 906 | expr5 ==# expr5 equal, match case |
| 907 | etc. As above, append ? for ignoring case, # for |
| 908 | matching case |
| 909 | |
Bram Moolenaar | 5e66b42 | 2019-01-24 21:58:10 +0100 | [diff] [blame] | 910 | expr5 is expr5 same |List|, |Dictionary| or |Blob| instance |
| 911 | expr5 isnot expr5 different |List|, |Dictionary| or |Blob| |
| 912 | instance |
Bram Moolenaar | de8866b | 2005-01-06 23:24:37 +0000 | [diff] [blame] | 913 | |
K.Takata | c23fc36 | 2023-12-09 05:51:04 +0900 | [diff] [blame] | 914 | |expr5| expr6 |
| 915 | expr6 << expr6 bitwise left shift |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 916 | expr6 >> expr6 bitwise right shift |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 917 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 918 | |expr6| expr7 |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 919 | expr7 + expr7 ... number addition, list or blob concatenation |
| 920 | expr7 - expr7 ... number subtraction |
| 921 | expr7 . expr7 ... string concatenation |
| 922 | expr7 .. expr7 ... string concatenation |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 923 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 924 | |expr7| expr8 |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 925 | expr8 * expr8 ... number multiplication |
| 926 | expr8 / expr8 ... number division |
| 927 | expr8 % expr8 ... number modulo |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 928 | |
Bram Moolenaar | 89bcfda | 2016-08-30 23:26:57 +0200 | [diff] [blame] | 929 | |expr8| expr9 |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 930 | <type>expr9 type check and conversion (|Vim9| only) |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 931 | |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 932 | |expr9| expr10 |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 933 | ! expr9 logical NOT |
| 934 | - expr9 unary minus |
| 935 | + expr9 unary plus |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 936 | |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 937 | |expr10| expr11 |
| 938 | expr10[expr1] byte of a String or item of a |List| |
| 939 | expr10[expr1 : expr1] substring of a String or sublist of a |List| |
| 940 | expr10.name entry in a |Dictionary| |
| 941 | expr10(expr1, ...) function call with |Funcref| variable |
| 942 | expr10->name(expr1, ...) |method| call |
| 943 | |
| 944 | |expr11| number number constant |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 945 | "string" string constant, backslash is special |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 946 | 'string' string constant, ' is doubled |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 947 | [expr1, ...] |List| |
| 948 | {expr1: expr1, ...} |Dictionary| |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 949 | #{key: expr1, ...} legacy |Dictionary| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 950 | &option option value |
| 951 | (expr1) nested expression |
| 952 | variable internal variable |
| 953 | va{ria}ble internal variable with curly braces |
| 954 | $VAR environment variable |
| 955 | @r contents of register 'r' |
| 956 | function(expr1, ...) function call |
| 957 | func{ti}on(expr1, ...) function call with curly braces |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 958 | {args -> expr1} legacy lambda expression |
| 959 | (args) => expr1 Vim9 lambda expression |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 960 | |
| 961 | |
Bram Moolenaar | 0f248b0 | 2019-04-04 15:36:05 +0200 | [diff] [blame] | 962 | "..." indicates that the operations in this level can be concatenated. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 963 | Example: > |
| 964 | &nu || &list && &shell == "csh" |
| 965 | |
| 966 | All expressions within one level are parsed from left to right. |
| 967 | |
Bram Moolenaar | f10911e | 2022-01-29 22:20:48 +0000 | [diff] [blame] | 968 | Expression nesting is limited to 1000 levels deep (300 when build with MSVC) |
| 969 | to avoid running out of stack and crashing. *E1169* |
| 970 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 971 | |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 972 | expr1 *expr1* *ternary* *falsy-operator* *??* *E109* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 973 | ----- |
| 974 | |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 975 | The ternary operator: expr2 ? expr1 : expr1 |
Bram Moolenaar | 92f26c2 | 2020-10-03 20:17:30 +0200 | [diff] [blame] | 976 | The falsy operator: expr2 ?? expr1 |
| 977 | |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 978 | Ternary operator ~ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 979 | |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 980 | In legacy script the expression before the '?' is evaluated to a number. If |
| 981 | it evaluates to |TRUE|, the result is the value of the expression between the |
| 982 | '?' and ':', otherwise the result is the value of the expression after the |
| 983 | ':'. |
| 984 | |
| 985 | In |Vim9| script the first expression must evaluate to a boolean, see |
| 986 | |vim9-boolean|. |
| 987 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 988 | Example: > |
| 989 | :echo lnum == 1 ? "top" : lnum |
| 990 | |
| 991 | Since the first expression is an "expr2", it cannot contain another ?:. The |
| 992 | other two expressions can, thus allow for recursive use of ?:. |
| 993 | Example: > |
| 994 | :echo lnum == 1 ? "top" : lnum == 1000 ? "last" : lnum |
| 995 | |
| 996 | To keep this readable, using |line-continuation| is suggested: > |
| 997 | :echo lnum == 1 |
| 998 | :\ ? "top" |
| 999 | :\ : lnum == 1000 |
| 1000 | :\ ? "last" |
| 1001 | :\ : lnum |
| 1002 | |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 1003 | You should always put a space before the ':', otherwise it can be mistaken for |
| 1004 | use in a variable such as "a:1". |
| 1005 | |
Bram Moolenaar | 92f26c2 | 2020-10-03 20:17:30 +0200 | [diff] [blame] | 1006 | Falsy operator ~ |
| 1007 | |
| 1008 | This is also known as the "null coalescing operator", but that's too |
| 1009 | complicated, thus we just call it the falsy operator. |
| 1010 | |
| 1011 | The expression before the '??' is evaluated. If it evaluates to |
| 1012 | |truthy|, this is used as the result. Otherwise the expression after the '??' |
| 1013 | is evaluated and used as the result. This is most useful to have a default |
| 1014 | value for an expression that may result in zero or empty: > |
| 1015 | echo theList ?? 'list is empty' |
| 1016 | echo GetName() ?? 'unknown' |
| 1017 | |
| 1018 | These are similar, but not equal: > |
| 1019 | expr2 ?? expr1 |
| 1020 | expr2 ? expr2 : expr1 |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1021 | In the second line "expr2" is evaluated twice. And in |Vim9| script the type |
| 1022 | of expr2 before "?" must be a boolean. |
Bram Moolenaar | 92f26c2 | 2020-10-03 20:17:30 +0200 | [diff] [blame] | 1023 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1024 | |
| 1025 | expr2 and expr3 *expr2* *expr3* |
| 1026 | --------------- |
| 1027 | |
Bram Moolenaar | 0418609 | 2016-08-29 21:55:35 +0200 | [diff] [blame] | 1028 | expr3 || expr3 .. logical OR *expr-barbar* |
| 1029 | expr4 && expr4 .. logical AND *expr-&&* |
| 1030 | |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1031 | The "||" and "&&" operators take one argument on each side. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1032 | |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1033 | In legacy script the arguments are (converted to) Numbers. |
| 1034 | |
| 1035 | In |Vim9| script the values must be boolean, see |vim9-boolean|. Use "!!" to |
| 1036 | convert any type to a boolean. |
| 1037 | |
| 1038 | The result is: |
Bram Moolenaar | e381d3d | 2016-07-07 14:50:41 +0200 | [diff] [blame] | 1039 | input output ~ |
| 1040 | n1 n2 n1 || n2 n1 && n2 ~ |
| 1041 | |FALSE| |FALSE| |FALSE| |FALSE| |
| 1042 | |FALSE| |TRUE| |TRUE| |FALSE| |
| 1043 | |TRUE| |FALSE| |TRUE| |FALSE| |
| 1044 | |TRUE| |TRUE| |TRUE| |TRUE| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1045 | |
| 1046 | The operators can be concatenated, for example: > |
| 1047 | |
| 1048 | &nu || &list && &shell == "csh" |
| 1049 | |
| 1050 | Note that "&&" takes precedence over "||", so this has the meaning of: > |
| 1051 | |
| 1052 | &nu || (&list && &shell == "csh") |
| 1053 | |
| 1054 | Once the result is known, the expression "short-circuits", that is, further |
| 1055 | arguments are not evaluated. This is like what happens in C. For example: > |
| 1056 | |
| 1057 | let a = 1 |
| 1058 | echo a || b |
| 1059 | |
Bram Moolenaar | e381d3d | 2016-07-07 14:50:41 +0200 | [diff] [blame] | 1060 | This is valid even if there is no variable called "b" because "a" is |TRUE|, |
| 1061 | so the result must be |TRUE|. Similarly below: > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1062 | |
| 1063 | echo exists("b") && b == "yes" |
| 1064 | |
| 1065 | This is valid whether "b" has been defined or not. The second clause will |
| 1066 | only be evaluated if "b" has been defined. |
| 1067 | |
| 1068 | |
Bram Moolenaar | a2baa73 | 2022-02-04 16:09:54 +0000 | [diff] [blame] | 1069 | expr4 *expr4* *E1153* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1070 | ----- |
| 1071 | |
| 1072 | expr5 {cmp} expr5 |
| 1073 | |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1074 | Compare two expr5 expressions. In legacy script the result is a 0 if it |
| 1075 | evaluates to false, or 1 if it evaluates to true. In |Vim9| script the result |
| 1076 | is |true| or |false|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1077 | |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 1078 | *expr-==* *expr-!=* *expr->* *expr->=* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1079 | *expr-<* *expr-<=* *expr-=~* *expr-!~* |
| 1080 | *expr-==#* *expr-!=#* *expr->#* *expr->=#* |
| 1081 | *expr-<#* *expr-<=#* *expr-=~#* *expr-!~#* |
| 1082 | *expr-==?* *expr-!=?* *expr->?* *expr->=?* |
| 1083 | *expr-<?* *expr-<=?* *expr-=~?* *expr-!~?* |
Bram Moolenaar | 251e191 | 2011-06-19 05:09:16 +0200 | [diff] [blame] | 1084 | *expr-is* *expr-isnot* *expr-is#* *expr-isnot#* |
Bram Moolenaar | 6f4754b | 2022-01-23 12:07:04 +0000 | [diff] [blame] | 1085 | *expr-is?* *expr-isnot?* *E1072* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1086 | use 'ignorecase' match case ignore case ~ |
| 1087 | equal == ==# ==? |
| 1088 | not equal != !=# !=? |
| 1089 | greater than > ># >? |
| 1090 | greater than or equal >= >=# >=? |
| 1091 | smaller than < <# <? |
| 1092 | smaller than or equal <= <=# <=? |
| 1093 | regexp matches =~ =~# =~? |
| 1094 | regexp doesn't match !~ !~# !~? |
Bram Moolenaar | 251e191 | 2011-06-19 05:09:16 +0200 | [diff] [blame] | 1095 | same instance is is# is? |
| 1096 | different instance isnot isnot# isnot? |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1097 | |
| 1098 | Examples: |
| 1099 | "abc" ==# "Abc" evaluates to 0 |
| 1100 | "abc" ==? "Abc" evaluates to 1 |
| 1101 | "abc" == "Abc" evaluates to 1 if 'ignorecase' is set, 0 otherwise |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1102 | NOTE: In |Vim9| script 'ignorecase' is not used. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1103 | |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 1104 | *E691* *E692* |
Bram Moolenaar | 01164a6 | 2017-11-02 22:58:42 +0100 | [diff] [blame] | 1105 | A |List| can only be compared with a |List| and only "equal", "not equal", |
| 1106 | "is" and "isnot" can be used. This compares the values of the list, |
| 1107 | recursively. Ignoring case means case is ignored when comparing item values. |
Bram Moolenaar | de8866b | 2005-01-06 23:24:37 +0000 | [diff] [blame] | 1108 | |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 1109 | *E735* *E736* |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 1110 | A |Dictionary| can only be compared with a |Dictionary| and only "equal", "not |
Bram Moolenaar | 01164a6 | 2017-11-02 22:58:42 +0100 | [diff] [blame] | 1111 | equal", "is" and "isnot" can be used. This compares the key/values of the |
| 1112 | |Dictionary| recursively. Ignoring case means case is ignored when comparing |
| 1113 | item values. |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 1114 | |
Bram Moolenaar | aa3b15d | 2016-04-21 08:53:19 +0200 | [diff] [blame] | 1115 | *E694* |
Bram Moolenaar | e18dbe8 | 2016-07-02 21:42:23 +0200 | [diff] [blame] | 1116 | A |Funcref| can only be compared with a |Funcref| and only "equal", "not |
| 1117 | equal", "is" and "isnot" can be used. Case is never ignored. Whether |
| 1118 | arguments or a Dictionary are bound (with a partial) matters. The |
| 1119 | Dictionaries must also be equal (or the same, in case of "is") and the |
| 1120 | arguments must be equal (or the same). |
| 1121 | |
| 1122 | To compare Funcrefs to see if they refer to the same function, ignoring bound |
| 1123 | Dictionary and arguments, use |get()| to get the function name: > |
| 1124 | if get(Part1, 'name') == get(Part2, 'name') |
| 1125 | " Part1 and Part2 refer to the same function |
Bram Moolenaar | 6f4754b | 2022-01-23 12:07:04 +0000 | [diff] [blame] | 1126 | < *E1037* |
Bram Moolenaar | 5e66b42 | 2019-01-24 21:58:10 +0100 | [diff] [blame] | 1127 | Using "is" or "isnot" with a |List|, |Dictionary| or |Blob| checks whether |
| 1128 | the expressions are referring to the same |List|, |Dictionary| or |Blob| |
| 1129 | instance. A copy of a |List| is different from the original |List|. When |
| 1130 | using "is" without a |List|, |Dictionary| or |Blob|, it is equivalent to |
| 1131 | using "equal", using "isnot" equivalent to using "not equal". Except that |
| 1132 | a different type means the values are different: > |
Bram Moolenaar | 86edef6 | 2016-03-13 18:07:30 +0100 | [diff] [blame] | 1133 | echo 4 == '4' |
| 1134 | 1 |
| 1135 | echo 4 is '4' |
| 1136 | 0 |
| 1137 | echo 0 is [] |
| 1138 | 0 |
| 1139 | "is#"/"isnot#" and "is?"/"isnot?" can be used to match and ignore case. |
Bram Moolenaar | e1f3fd1 | 2022-08-15 18:51:32 +0100 | [diff] [blame] | 1140 | In |Vim9| script this doesn't work, two strings are never identical. |
Bram Moolenaar | de8866b | 2005-01-06 23:24:37 +0000 | [diff] [blame] | 1141 | |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1142 | In legacy script, when comparing a String with a Number, the String is |
| 1143 | converted to a Number, and the comparison is done on Numbers. This means |
| 1144 | that: > |
Bram Moolenaar | 86edef6 | 2016-03-13 18:07:30 +0100 | [diff] [blame] | 1145 | echo 0 == 'x' |
| 1146 | 1 |
| 1147 | because 'x' converted to a Number is zero. However: > |
| 1148 | echo [0] == ['x'] |
| 1149 | 0 |
| 1150 | Inside a List or Dictionary this conversion is not used. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1151 | |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1152 | In |Vim9| script the types must match. |
| 1153 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1154 | When comparing two Strings, this is done with strcmp() or stricmp(). This |
| 1155 | results in the mathematical difference (comparing byte values), not |
| 1156 | necessarily the alphabetical difference in the local language. |
| 1157 | |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 1158 | When using the operators with a trailing '#', or the short version and |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 1159 | 'ignorecase' is off, the comparing is done with strcmp(): case matters. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1160 | |
| 1161 | When using the operators with a trailing '?', or the short version and |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 1162 | 'ignorecase' is set, the comparing is done with stricmp(): case is ignored. |
| 1163 | |
| 1164 | 'smartcase' is not used. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1165 | |
| 1166 | The "=~" and "!~" operators match the lefthand argument with the righthand |
| 1167 | argument, which is used as a pattern. See |pattern| for what a pattern is. |
| 1168 | This matching is always done like 'magic' was set and 'cpoptions' is empty, no |
| 1169 | matter what the actual value of 'magic' or 'cpoptions' is. This makes scripts |
| 1170 | portable. To avoid backslashes in the regexp pattern to be doubled, use a |
| 1171 | single-quote string, see |literal-string|. |
| 1172 | Since a string is considered to be a single line, a multi-line pattern |
| 1173 | (containing \n, backslash-n) will not match. However, a literal NL character |
| 1174 | can be matched like an ordinary character. Examples: |
| 1175 | "foo\nbar" =~ "\n" evaluates to 1 |
| 1176 | "foo\nbar" =~ "\\n" evaluates to 0 |
| 1177 | |
| 1178 | |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1179 | expr5 *expr5* *bitwise-shift* |
| 1180 | ----- |
| 1181 | expr6 << expr6 bitwise left shift *expr-<<* |
| 1182 | expr6 >> expr6 bitwise right shift *expr->>* |
| 1183 | *E1282* *E1283* |
| 1184 | The "<<" and ">>" operators can be used to perform bitwise left or right shift |
| 1185 | of the left operand by the number of bits specified by the right operand. The |
Bram Moolenaar | 338bf58 | 2022-05-22 20:16:32 +0100 | [diff] [blame] | 1186 | operands are used as positive numbers. When shifting right with ">>" the |
Bram Moolenaar | d592deb | 2022-06-17 15:42:40 +0100 | [diff] [blame] | 1187 | topmost bit (sometimes called the sign bit) is cleared. If the right operand |
Bram Moolenaar | 338bf58 | 2022-05-22 20:16:32 +0100 | [diff] [blame] | 1188 | (shift amount) is more than the maximum number of bits in a number |
| 1189 | (|v:numbersize|) the result is zero. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1190 | |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1191 | |
| 1192 | expr6 and expr7 *expr6* *expr7* *E1036* *E1051* |
| 1193 | --------------- |
| 1194 | expr7 + expr7 Number addition, |List| or |Blob| concatenation *expr-+* |
| 1195 | expr7 - expr7 Number subtraction *expr--* |
| 1196 | expr7 . expr7 String concatenation *expr-.* |
| 1197 | expr7 .. expr7 String concatenation *expr-..* |
| 1198 | |
| 1199 | For |Lists| only "+" is possible and then both expr7 must be a list. The |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 1200 | result is a new list with the two lists Concatenated. |
Bram Moolenaar | de8866b | 2005-01-06 23:24:37 +0000 | [diff] [blame] | 1201 | |
Bram Moolenaar | 0f248b0 | 2019-04-04 15:36:05 +0200 | [diff] [blame] | 1202 | For String concatenation ".." is preferred, since "." is ambiguous, it is also |
| 1203 | used for |Dict| member access and floating point numbers. |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1204 | In |Vim9| script and when |vimscript-version| is 2 or higher, using "." is not |
| 1205 | allowed. |
| 1206 | |
| 1207 | In |Vim9| script the arguments of ".." are converted to String for simple |
| 1208 | types: Number, Float, Special and Bool. For other types |string()| should be |
| 1209 | used. |
Bram Moolenaar | 0f248b0 | 2019-04-04 15:36:05 +0200 | [diff] [blame] | 1210 | |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1211 | expr8 * expr8 Number multiplication *expr-star* |
| 1212 | expr8 / expr8 Number division *expr-/* |
| 1213 | expr8 % expr8 Number modulo *expr-%* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1214 | |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1215 | In legacy script, for all operators except "." and "..", Strings are converted |
| 1216 | to Numbers. |
| 1217 | |
Bram Moolenaar | d6e256c | 2011-12-14 15:32:50 +0100 | [diff] [blame] | 1218 | For bitwise operators see |and()|, |or()| and |xor()|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1219 | |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1220 | Note the difference between "+" and ".." in legacy script: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1221 | "123" + "456" = 579 |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1222 | "123" .. "456" = "123456" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1223 | |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1224 | Since '..' has the same precedence as '+' and '-', you need to read: > |
| 1225 | 1 .. 90 + 90.0 |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 1226 | As: > |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1227 | (1 .. 90) + 90.0 |
| 1228 | That works in legacy script, since the String "190" is automatically converted |
| 1229 | to the Number 190, which can be added to the Float 90.0. However: > |
| 1230 | 1 .. 90 * 90.0 |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 1231 | Should be read as: > |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1232 | 1 .. (90 * 90.0) |
| 1233 | Since '..' has lower precedence than '*'. This does NOT work, since this |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 1234 | attempts to concatenate a Float and a String. |
| 1235 | |
| 1236 | When dividing a Number by zero the result depends on the value: |
| 1237 | 0 / 0 = -0x80000000 (like NaN for Float) |
| 1238 | >0 / 0 = 0x7fffffff (like positive infinity) |
| 1239 | <0 / 0 = -0x7fffffff (like negative infinity) |
| 1240 | (before Vim 7.2 it was always 0x7fffffff) |
Bram Moolenaar | a2baa73 | 2022-02-04 16:09:54 +0000 | [diff] [blame] | 1241 | In |Vim9| script dividing a number by zero is an error. *E1154* |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 1242 | |
Bram Moolenaar | 22fcfad | 2016-07-01 18:17:26 +0200 | [diff] [blame] | 1243 | When 64-bit Number support is enabled: |
| 1244 | 0 / 0 = -0x8000000000000000 (like NaN for Float) |
| 1245 | >0 / 0 = 0x7fffffffffffffff (like positive infinity) |
| 1246 | <0 / 0 = -0x7fffffffffffffff (like negative infinity) |
| 1247 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1248 | When the righthand side of '%' is zero, the result is 0. |
| 1249 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 1250 | None of these work for |Funcref|s. |
Bram Moolenaar | de8866b | 2005-01-06 23:24:37 +0000 | [diff] [blame] | 1251 | |
Bram Moolenaar | 6f4754b | 2022-01-23 12:07:04 +0000 | [diff] [blame] | 1252 | ".", ".." and "%" do not work for Float. *E804* *E1035* |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 1253 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1254 | |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1255 | expr8 *expr8* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1256 | ----- |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1257 | <type>expr9 |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1258 | |
| 1259 | This is only available in |Vim9| script, see |type-casting|. |
| 1260 | |
| 1261 | |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1262 | expr9 *expr9* |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1263 | ----- |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1264 | ! expr9 logical NOT *expr-!* |
| 1265 | - expr9 unary minus *expr-unary--* |
| 1266 | + expr9 unary plus *expr-unary-+* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1267 | |
Bram Moolenaar | e381d3d | 2016-07-07 14:50:41 +0200 | [diff] [blame] | 1268 | For '!' |TRUE| becomes |FALSE|, |FALSE| becomes |TRUE| (one). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1269 | For '-' the sign of the number is changed. |
Bram Moolenaar | 6f02b00 | 2021-01-10 20:22:54 +0100 | [diff] [blame] | 1270 | For '+' the number is unchanged. Note: "++" has no effect. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1271 | |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1272 | In legacy script a String will be converted to a Number first. Note that if |
| 1273 | the string does not start with a digit you likely don't get what you expect. |
| 1274 | |
| 1275 | In |Vim9| script an error is given when "-" or "+" is used and the type is not |
| 1276 | a number. |
| 1277 | |
| 1278 | In |Vim9| script "!" can be used for any type and the result is always a |
| 1279 | boolean. Use "!!" to convert any type to a boolean, according to whether the |
| 1280 | value is |falsy|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1281 | |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 1282 | These three can be repeated and mixed. Examples: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1283 | !-1 == 0 |
| 1284 | !!8 == 1 |
| 1285 | --9 == 9 |
| 1286 | |
| 1287 | |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1288 | expr10 *expr10* |
| 1289 | ------ |
| 1290 | This expression is either |expr11| or a sequence of the alternatives below, |
Bram Moolenaar | fc65cab | 2018-08-28 22:58:02 +0200 | [diff] [blame] | 1291 | in any order. E.g., these are all possible: |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1292 | expr10[expr1].name |
| 1293 | expr10.name[expr1] |
| 1294 | expr10(expr1, ...)[expr1].name |
| 1295 | expr10->(expr1, ...)[expr1] |
Bram Moolenaar | ac92e25 | 2019-08-03 21:58:38 +0200 | [diff] [blame] | 1296 | Evaluation is always from left to right. |
Bram Moolenaar | fc65cab | 2018-08-28 22:58:02 +0200 | [diff] [blame] | 1297 | |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1298 | expr10[expr1] item of String or |List| *expr-[]* *E111* |
Bram Moolenaar | 6f4754b | 2022-01-23 12:07:04 +0000 | [diff] [blame] | 1299 | *E909* *subscript* *E1062* |
Bram Moolenaar | e3c37d8 | 2020-08-15 18:39:05 +0200 | [diff] [blame] | 1300 | In legacy Vim script: |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1301 | If expr10 is a Number or String this results in a String that contains the |
| 1302 | expr1'th single byte from expr10. expr10 is used as a String (a number is |
Bram Moolenaar | e3c37d8 | 2020-08-15 18:39:05 +0200 | [diff] [blame] | 1303 | automatically converted to a String), expr1 as a Number. This doesn't |
Bram Moolenaar | 207f009 | 2020-08-30 17:20:20 +0200 | [diff] [blame] | 1304 | recognize multibyte encodings, see `byteidx()` for an alternative, or use |
Bram Moolenaar | e3c37d8 | 2020-08-15 18:39:05 +0200 | [diff] [blame] | 1305 | `split()` to turn the string into a list of characters. Example, to get the |
| 1306 | byte under the cursor: > |
Bram Moolenaar | 61660ea | 2006-04-07 21:40:07 +0000 | [diff] [blame] | 1307 | :let c = getline(".")[col(".") - 1] |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1308 | |
Bram Moolenaar | a2baa73 | 2022-02-04 16:09:54 +0000 | [diff] [blame] | 1309 | In |Vim9| script: *E1147* *E1148* |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1310 | If expr10 is a String this results in a String that contains the expr1'th |
| 1311 | single character (including any composing characters) from expr10. To use byte |
Bram Moolenaar | 02b4d9b | 2021-03-14 19:46:45 +0100 | [diff] [blame] | 1312 | indexes use |strpart()|. |
Bram Moolenaar | e3c37d8 | 2020-08-15 18:39:05 +0200 | [diff] [blame] | 1313 | |
| 1314 | Index zero gives the first byte or character. Careful: text column numbers |
| 1315 | start with one! |
| 1316 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1317 | If the length of the String is less than the index, the result is an empty |
Bram Moolenaar | 85084ef | 2016-01-17 22:26:33 +0100 | [diff] [blame] | 1318 | String. A negative index always results in an empty string (reason: backward |
Bram Moolenaar | e3c37d8 | 2020-08-15 18:39:05 +0200 | [diff] [blame] | 1319 | compatibility). Use [-1:] to get the last byte or character. |
Bram Moolenaar | 6f02b00 | 2021-01-10 20:22:54 +0100 | [diff] [blame] | 1320 | In Vim9 script a negative index is used like with a list: count from the end. |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 1321 | |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1322 | If expr10 is a |List| then it results the item at index expr1. See |list-index| |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 1323 | for possible index values. If the index is out of range this results in an |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 1324 | error. Example: > |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 1325 | :let item = mylist[-1] " get last item |
| 1326 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 1327 | Generally, if a |List| index is equal to or higher than the length of the |
| 1328 | |List|, or more negative than the length of the |List|, this results in an |
| 1329 | error. |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 1330 | |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 1331 | |
Bram Moolenaar | 8a3b805 | 2022-06-26 12:21:15 +0100 | [diff] [blame] | 1332 | expr10[expr1a : expr1b] substring or |sublist| *expr-[:]* *substring* |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 1333 | |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1334 | If expr10 is a String this results in the substring with the bytes or |
| 1335 | characters from expr1a to and including expr1b. expr10 is used as a String, |
Bram Moolenaar | 207f009 | 2020-08-30 17:20:20 +0200 | [diff] [blame] | 1336 | expr1a and expr1b are used as a Number. |
Bram Moolenaar | e3c37d8 | 2020-08-15 18:39:05 +0200 | [diff] [blame] | 1337 | |
| 1338 | In legacy Vim script the indexes are byte indexes. This doesn't recognize |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1339 | multibyte encodings, see |byteidx()| for computing the indexes. If expr10 is |
Bram Moolenaar | e3c37d8 | 2020-08-15 18:39:05 +0200 | [diff] [blame] | 1340 | a Number it is first converted to a String. |
| 1341 | |
Bram Moolenaar | 02b4d9b | 2021-03-14 19:46:45 +0100 | [diff] [blame] | 1342 | In Vim9 script the indexes are character indexes and include composing |
| 1343 | characters. To use byte indexes use |strpart()|. To use character indexes |
| 1344 | without including composing characters use |strcharpart()|. |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 1345 | |
Bram Moolenaar | 6601b62 | 2021-01-13 21:47:15 +0100 | [diff] [blame] | 1346 | The item at index expr1b is included, it is inclusive. For an exclusive index |
| 1347 | use the |slice()| function. |
| 1348 | |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 1349 | If expr1a is omitted zero is used. If expr1b is omitted the length of the |
| 1350 | string minus one is used. |
| 1351 | |
| 1352 | A negative number can be used to measure from the end of the string. -1 is |
| 1353 | the last character, -2 the last but one, etc. |
| 1354 | |
| 1355 | If an index goes out of range for the string characters are omitted. If |
| 1356 | expr1b is smaller than expr1a the result is an empty string. |
| 1357 | |
| 1358 | Examples: > |
| 1359 | :let c = name[-1:] " last byte of a string |
Bram Moolenaar | 207f009 | 2020-08-30 17:20:20 +0200 | [diff] [blame] | 1360 | :let c = name[0:-1] " the whole string |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 1361 | :let c = name[-2:-2] " last but one byte of a string |
| 1362 | :let s = line(".")[4:] " from the fifth byte to the end |
| 1363 | :let s = s[:-3] " remove last two bytes |
Bram Moolenaar | 8f3f58f | 2010-01-06 20:52:26 +0100 | [diff] [blame] | 1364 | < |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 1365 | *slice* |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1366 | If expr10 is a |List| this results in a new |List| with the items indicated by |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 1367 | the indexes expr1a and expr1b. This works like with a String, as explained |
Bram Moolenaar | bc8801c | 2016-08-02 21:04:33 +0200 | [diff] [blame] | 1368 | just above. Also see |sublist| below. Examples: > |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 1369 | :let l = mylist[:3] " first four items |
| 1370 | :let l = mylist[4:4] " List with one item |
| 1371 | :let l = mylist[:] " shallow copy of a List |
| 1372 | |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1373 | If expr10 is a |Blob| this results in a new |Blob| with the bytes in the |
Bram Moolenaar | 6e5ea8d | 2019-01-12 22:47:31 +0100 | [diff] [blame] | 1374 | indexes expr1a and expr1b, inclusive. Examples: > |
| 1375 | :let b = 0zDEADBEEF |
| 1376 | :let bs = b[1:2] " 0zADBE |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 1377 | :let bs = b[:] " copy of 0zDEADBEEF |
Bram Moolenaar | 6e5ea8d | 2019-01-12 22:47:31 +0100 | [diff] [blame] | 1378 | |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1379 | Using expr10[expr1] or expr10[expr1a : expr1b] on a |Funcref| results in an |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 1380 | error. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1381 | |
Bram Moolenaar | da440d2 | 2016-01-16 21:27:23 +0100 | [diff] [blame] | 1382 | Watch out for confusion between a namespace and a variable followed by a colon |
| 1383 | for a sublist: > |
| 1384 | mylist[n:] " uses variable n |
| 1385 | mylist[s:] " uses namespace s:, error! |
| 1386 | |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 1387 | |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1388 | expr10.name entry in a |Dictionary| *expr-entry* |
Bram Moolenaar | a2baa73 | 2022-02-04 16:09:54 +0000 | [diff] [blame] | 1389 | *E1203* *E1229* |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1390 | If expr10 is a |Dictionary| and it is followed by a dot, then the following |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 1391 | name will be used as a key in the |Dictionary|. This is just like: |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1392 | expr10[name]. |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 1393 | |
| 1394 | The name must consist of alphanumeric characters, just like a variable name, |
| 1395 | but it may start with a number. Curly braces cannot be used. |
| 1396 | |
| 1397 | There must not be white space before or after the dot. |
| 1398 | |
| 1399 | Examples: > |
| 1400 | :let dict = {"one": 1, 2: "two"} |
Bram Moolenaar | 68e6560 | 2019-05-26 21:33:31 +0200 | [diff] [blame] | 1401 | :echo dict.one " shows "1" |
| 1402 | :echo dict.2 " shows "two" |
| 1403 | :echo dict .2 " error because of space before the dot |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 1404 | |
| 1405 | Note that the dot is also used for String concatenation. To avoid confusion |
| 1406 | always put spaces around the dot for String concatenation. |
| 1407 | |
| 1408 | |
Bram Moolenaar | 938ae28 | 2023-02-20 20:44:55 +0000 | [diff] [blame] | 1409 | expr10(expr1, ...) |Funcref| function call *E1085* |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 1410 | |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1411 | When expr10 is a |Funcref| type variable, invoke the function it refers to. |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 1412 | |
| 1413 | |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1414 | expr10->name([args]) method call *method* *->* |
| 1415 | expr10->{lambda}([args]) |
Bram Moolenaar | a2baa73 | 2022-02-04 16:09:54 +0000 | [diff] [blame] | 1416 | *E260* *E276* *E1265* |
Bram Moolenaar | 25e4223 | 2019-08-04 15:04:10 +0200 | [diff] [blame] | 1417 | For methods that are also available as global functions this is the same as: > |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1418 | name(expr10 [, args]) |
| 1419 | There can also be methods specifically for the type of "expr10". |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 1420 | |
Bram Moolenaar | 5184132 | 2019-08-08 21:10:01 +0200 | [diff] [blame] | 1421 | This allows for chaining, passing the value that one method returns to the |
| 1422 | next method: > |
Bram Moolenaar | 25e4223 | 2019-08-04 15:04:10 +0200 | [diff] [blame] | 1423 | mylist->filter(filterexpr)->map(mapexpr)->sort()->join() |
| 1424 | < |
Bram Moolenaar | 22a0c0c | 2019-08-09 23:25:08 +0200 | [diff] [blame] | 1425 | Example of using a lambda: > |
Bram Moolenaar | 02b3111 | 2019-08-31 22:16:38 +0200 | [diff] [blame] | 1426 | GetPercentage()->{x -> x * 100}()->printf('%d%%') |
Bram Moolenaar | 56c860c | 2019-08-17 20:09:31 +0200 | [diff] [blame] | 1427 | < |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1428 | When using -> the |expr9| operators will be applied first, thus: > |
Bram Moolenaar | 93cf85f | 2019-08-17 21:36:28 +0200 | [diff] [blame] | 1429 | -1.234->string() |
| 1430 | Is equivalent to: > |
| 1431 | (-1.234)->string() |
| 1432 | And NOT: > |
| 1433 | -(1.234->string()) |
Bram Moolenaar | 6f4754b | 2022-01-23 12:07:04 +0000 | [diff] [blame] | 1434 | |
| 1435 | What comes after "->" can be a name, a simple expression (not containing any |
Bram Moolenaar | 944697a | 2022-02-20 19:48:20 +0000 | [diff] [blame] | 1436 | parenthesis), or any expression in parentheses: > |
Bram Moolenaar | 6f4754b | 2022-01-23 12:07:04 +0000 | [diff] [blame] | 1437 | base->name(args) |
| 1438 | base->some.name(args) |
| 1439 | base->alist[idx](args) |
| 1440 | base->(getFuncRef())(args) |
| 1441 | Note that in the last call the base is passed to the function resulting from |
Bram Moolenaar | 2ecbe53 | 2022-07-29 21:36:21 +0100 | [diff] [blame] | 1442 | "(getFuncRef())", inserted before "args". *E1275* |
Bram Moolenaar | 6f4754b | 2022-01-23 12:07:04 +0000 | [diff] [blame] | 1443 | |
Bram Moolenaar | 5184132 | 2019-08-08 21:10:01 +0200 | [diff] [blame] | 1444 | *E274* |
| 1445 | "->name(" must not contain white space. There can be white space before the |
| 1446 | "->" and after the "(", thus you can split the lines like this: > |
| 1447 | mylist |
| 1448 | \ ->filter(filterexpr) |
| 1449 | \ ->map(mapexpr) |
| 1450 | \ ->sort() |
| 1451 | \ ->join() |
Bram Moolenaar | 56c860c | 2019-08-17 20:09:31 +0200 | [diff] [blame] | 1452 | |
| 1453 | When using the lambda form there must be no white space between the } and the |
| 1454 | (. |
| 1455 | |
Bram Moolenaar | 25e4223 | 2019-08-04 15:04:10 +0200 | [diff] [blame] | 1456 | |
Yegappan Lakshmanan | a061f34 | 2022-05-22 19:13:49 +0100 | [diff] [blame] | 1457 | *expr11* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1458 | number |
| 1459 | ------ |
Bram Moolenaar | b0d45e7 | 2017-11-05 18:19:24 +0100 | [diff] [blame] | 1460 | number number constant *expr-number* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1461 | |
Bram Moolenaar | 6f02b00 | 2021-01-10 20:22:54 +0100 | [diff] [blame] | 1462 | *0x* *hex-number* *0o* *octal-number* *binary-number* |
Bram Moolenaar | 7571d55 | 2016-08-18 22:54:46 +0200 | [diff] [blame] | 1463 | Decimal, Hexadecimal (starting with 0x or 0X), Binary (starting with 0b or 0B) |
Bram Moolenaar | c17e66c | 2020-06-02 21:38:22 +0200 | [diff] [blame] | 1464 | and Octal (starting with 0, 0o or 0O). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1465 | |
Bram Moolenaar | 338bf58 | 2022-05-22 20:16:32 +0100 | [diff] [blame] | 1466 | Assuming 64 bit numbers are used (see |v:numbersize|) an unsigned number is |
| 1467 | truncated to 0x7fffffffffffffff or 9223372036854775807. You can use -1 to get |
| 1468 | 0xffffffffffffffff. |
| 1469 | |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 1470 | *floating-point-format* |
| 1471 | Floating point numbers can be written in two forms: |
| 1472 | |
| 1473 | [-+]{N}.{M} |
Bram Moolenaar | 8a94d87 | 2015-01-25 13:02:57 +0100 | [diff] [blame] | 1474 | [-+]{N}.{M}[eE][-+]{exp} |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 1475 | |
| 1476 | {N} and {M} are numbers. Both {N} and {M} must be present and can only |
Bram Moolenaar | 6aa5729 | 2021-08-14 21:25:52 +0200 | [diff] [blame] | 1477 | contain digits, except that in |Vim9| script in {N} single quotes between |
| 1478 | digits are ignored. |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 1479 | [-+] means there is an optional plus or minus sign. |
| 1480 | {exp} is the exponent, power of 10. |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 1481 | Only a decimal point is accepted, not a comma. No matter what the current |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 1482 | locale is. |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 1483 | |
| 1484 | Examples: |
| 1485 | 123.456 |
| 1486 | +0.0001 |
| 1487 | 55.0 |
| 1488 | -0.123 |
| 1489 | 1.234e03 |
| 1490 | 1.0E-6 |
| 1491 | -3.1416e+88 |
| 1492 | |
| 1493 | These are INVALID: |
| 1494 | 3. empty {M} |
| 1495 | 1e40 missing .{M} |
| 1496 | |
| 1497 | Rationale: |
| 1498 | Before floating point was introduced, the text "123.456" was interpreted as |
| 1499 | the two numbers "123" and "456", both converted to a string and concatenated, |
| 1500 | resulting in the string "123456". Since this was considered pointless, and we |
Bram Moolenaar | e37d50a | 2008-08-06 17:06:04 +0000 | [diff] [blame] | 1501 | could not find it intentionally being used in Vim scripts, this backwards |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 1502 | incompatibility was accepted in favor of being able to use the normal notation |
| 1503 | for floating point numbers. |
| 1504 | |
Bram Moolenaar | d47d522 | 2018-12-09 20:43:55 +0100 | [diff] [blame] | 1505 | *float-pi* *float-e* |
| 1506 | A few useful values to copy&paste: > |
| 1507 | :let pi = 3.14159265359 |
| 1508 | :let e = 2.71828182846 |
| 1509 | Or, if you don't want to write them in as floating-point literals, you can |
| 1510 | also use functions, like the following: > |
| 1511 | :let pi = acos(-1.0) |
| 1512 | :let e = exp(1.0) |
Bram Moolenaar | 98aefe7 | 2018-12-13 22:20:09 +0100 | [diff] [blame] | 1513 | < |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 1514 | *floating-point-precision* |
| 1515 | The precision and range of floating points numbers depends on what "double" |
| 1516 | means in the library Vim was compiled with. There is no way to change this at |
| 1517 | runtime. |
| 1518 | |
| 1519 | The default for displaying a |Float| is to use 6 decimal places, like using |
| 1520 | printf("%g", f). You can select something else when using the |printf()| |
| 1521 | function. Example: > |
| 1522 | :echo printf('%.15e', atan(1)) |
| 1523 | < 7.853981633974483e-01 |
| 1524 | |
| 1525 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1526 | |
Bram Moolenaar | 979243b | 2015-06-26 19:35:49 +0200 | [diff] [blame] | 1527 | string *string* *String* *expr-string* *E114* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1528 | ------ |
| 1529 | "string" string constant *expr-quote* |
| 1530 | |
| 1531 | Note that double quotes are used. |
| 1532 | |
| 1533 | A string constant accepts these special characters: |
| 1534 | \... three-digit octal number (e.g., "\316") |
| 1535 | \.. two-digit octal number (must be followed by non-digit) |
| 1536 | \. one-digit octal number (must be followed by non-digit) |
| 1537 | \x.. byte specified with two hex numbers (e.g., "\x1f") |
| 1538 | \x. byte specified with one hex number (must be followed by non-hex char) |
| 1539 | \X.. same as \x.. |
| 1540 | \X. same as \x. |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 1541 | \u.... character specified with up to 4 hex numbers, stored according to the |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1542 | current value of 'encoding' (e.g., "\u02a4") |
Bram Moolenaar | 541f92d | 2015-06-19 13:27:23 +0200 | [diff] [blame] | 1543 | \U.... same as \u but allows up to 8 hex numbers. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1544 | \b backspace <BS> |
| 1545 | \e escape <Esc> |
Bram Moolenaar | 6e64922 | 2021-10-04 21:32:54 +0100 | [diff] [blame] | 1546 | \f formfeed 0x0C |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1547 | \n newline <NL> |
| 1548 | \r return <CR> |
| 1549 | \t tab <Tab> |
| 1550 | \\ backslash |
| 1551 | \" double quote |
Bram Moolenaar | 00a927d | 2010-05-14 23:24:24 +0200 | [diff] [blame] | 1552 | \<xxx> Special key named "xxx". e.g. "\<C-W>" for CTRL-W. This is for use |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 1553 | in mappings, the 0x80 byte is escaped. |
| 1554 | To use the double quote character it must be escaped: "<M-\">". |
Bram Moolenaar | 6e64922 | 2021-10-04 21:32:54 +0100 | [diff] [blame] | 1555 | Don't use <Char-xxxx> to get a UTF-8 character, use \uxxxx as |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 1556 | mentioned above. |
Bram Moolenaar | fccd93f | 2020-05-31 22:06:51 +0200 | [diff] [blame] | 1557 | \<*xxx> Like \<xxx> but prepends a modifier instead of including it in the |
| 1558 | character. E.g. "\<C-w>" is one character 0x17 while "\<*C-w>" is four |
Bram Moolenaar | ebe9d34 | 2020-05-30 21:52:54 +0200 | [diff] [blame] | 1559 | bytes: 3 for the CTRL modifier and then character "W". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1560 | |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 1561 | Note that "\xff" is stored as the byte 255, which may be invalid in some |
| 1562 | encodings. Use "\u00ff" to store character 255 according to the current value |
| 1563 | of 'encoding'. |
| 1564 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1565 | Note that "\000" and "\x00" force the end of the string. |
| 1566 | |
| 1567 | |
Bram Moolenaar | d896824 | 2019-01-15 22:51:57 +0100 | [diff] [blame] | 1568 | blob-literal *blob-literal* *E973* |
Bram Moolenaar | 6e5ea8d | 2019-01-12 22:47:31 +0100 | [diff] [blame] | 1569 | ------------ |
| 1570 | |
| 1571 | Hexadecimal starting with 0z or 0Z, with an arbitrary number of bytes. |
| 1572 | The sequence must be an even number of hex characters. Example: > |
| 1573 | :let b = 0zFF00ED015DAF |
| 1574 | |
| 1575 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1576 | literal-string *literal-string* *E115* |
| 1577 | --------------- |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 1578 | 'string' string constant *expr-'* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1579 | |
| 1580 | Note that single quotes are used. |
| 1581 | |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 1582 | This string is taken as it is. No backslashes are removed or have a special |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 1583 | meaning. The only exception is that two quotes stand for one quote. |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 1584 | |
| 1585 | Single quoted strings are useful for patterns, so that backslashes do not need |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 1586 | to be doubled. These two commands are equivalent: > |
Bram Moolenaar | 3fdfa4a | 2004-10-07 21:02:47 +0000 | [diff] [blame] | 1587 | if a =~ "\\s*" |
| 1588 | if a =~ '\s*' |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1589 | |
| 1590 | |
Bram Moolenaar | b59ae59 | 2022-11-23 23:46:31 +0000 | [diff] [blame] | 1591 | interpolated-string *$quote* *interpolated-string* |
LemonBoy | 2eaef10 | 2022-05-06 13:14:50 +0100 | [diff] [blame] | 1592 | -------------------- |
| 1593 | $"string" interpolated string constant *expr-$quote* |
| 1594 | $'string' interpolated literal string constant *expr-$'* |
| 1595 | |
| 1596 | Interpolated strings are an extension of the |string| and |literal-string|, |
| 1597 | allowing the inclusion of Vim script expressions (see |expr1|). Any |
| 1598 | expression returning a value can be enclosed between curly braces. The value |
| 1599 | is converted to a string. All the text and results of the expressions |
| 1600 | are concatenated to make a new string. |
Bram Moolenaar | 2ecbe53 | 2022-07-29 21:36:21 +0100 | [diff] [blame] | 1601 | *E1278* *E1279* |
LemonBoy | 2eaef10 | 2022-05-06 13:14:50 +0100 | [diff] [blame] | 1602 | To include an opening brace '{' or closing brace '}' in the string content |
Bram Moolenaar | 3f32a5f | 2022-05-12 20:34:15 +0100 | [diff] [blame] | 1603 | double it. For double quoted strings using a backslash also works. A single |
| 1604 | closing brace '}' will result in an error. |
LemonBoy | 2eaef10 | 2022-05-06 13:14:50 +0100 | [diff] [blame] | 1605 | |
| 1606 | Examples: > |
| 1607 | let your_name = input("What's your name? ") |
Bram Moolenaar | 3f32a5f | 2022-05-12 20:34:15 +0100 | [diff] [blame] | 1608 | < What's your name? Peter ~ |
| 1609 | > |
| 1610 | echo |
LemonBoy | 2eaef10 | 2022-05-06 13:14:50 +0100 | [diff] [blame] | 1611 | echo $"Hello, {your_name}!" |
Bram Moolenaar | 3f32a5f | 2022-05-12 20:34:15 +0100 | [diff] [blame] | 1612 | < Hello, Peter! ~ |
| 1613 | > |
| 1614 | echo $"The square root of {{9}} is {sqrt(9)}" |
| 1615 | < The square root of {9} is 3.0 ~ |
| 1616 | |
Christian Brabandt | 67672ef | 2023-04-24 21:09:54 +0100 | [diff] [blame] | 1617 | *string-offset-encoding* |
| 1618 | A string consists of multiple characters. How the characters are stored |
| 1619 | depends on 'encoding'. Most common is UTF-8, which uses one byte for ASCII |
| 1620 | characters, two bytes for other latin characters and more bytes for other |
| 1621 | characters. |
| 1622 | |
| 1623 | A string offset can count characters or bytes. Other programs may use |
| 1624 | UTF-16 encoding (16-bit words) and an offset of UTF-16 words. Some functions |
| 1625 | use byte offsets, usually for UTF-8 encoding. Other functions use character |
| 1626 | offsets, in which case the encoding doesn't matter. |
| 1627 | |
| 1628 | The different offsets for the string "a©😊" are below: |
| 1629 | |
| 1630 | UTF-8 offsets: |
| 1631 | [0]: 61, [1]: C2, [2]: A9, [3]: F0, [4]: 9F, [5]: 98, [6]: 8A |
| 1632 | UTF-16 offsets: |
| 1633 | [0]: 0061, [1]: 00A9, [2]: D83D, [3]: DE0A |
| 1634 | UTF-32 (character) offsets: |
| 1635 | [0]: 00000061, [1]: 000000A9, [2]: 0001F60A |
| 1636 | |
| 1637 | You can use the "g8" and "ga" commands on a character to see the |
| 1638 | decimal/hex/octal values. |
| 1639 | |
| 1640 | The functions |byteidx()|, |utf16idx()| and |charidx()| can be used to convert |
| 1641 | between these indices. The functions |strlen()|, |strutf16len()| and |
| 1642 | |strcharlen()| return the number of bytes, UTF-16 code units and characters in |
| 1643 | a string respectively. |
LemonBoy | 2eaef10 | 2022-05-06 13:14:50 +0100 | [diff] [blame] | 1644 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1645 | option *expr-option* *E112* *E113* |
| 1646 | ------ |
| 1647 | &option option value, local value if possible |
| 1648 | &g:option global option value |
| 1649 | &l:option local option value |
| 1650 | |
| 1651 | Examples: > |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 1652 | echo "tabstop is " .. &tabstop |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1653 | if &insertmode |
| 1654 | |
| 1655 | Any option name can be used here. See |options|. When using the local value |
| 1656 | and there is no buffer-local or window-local value, the global value is used |
| 1657 | anyway. |
| 1658 | |
| 1659 | |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 1660 | register *expr-register* *@r* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1661 | -------- |
| 1662 | @r contents of register 'r' |
| 1663 | |
| 1664 | The result is the contents of the named register, as a single string. |
| 1665 | Newlines are inserted where required. To get the contents of the unnamed |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 1666 | register use @" or @@. See |registers| for an explanation of the available |
Bram Moolenaar | e756604 | 2005-06-17 22:00:15 +0000 | [diff] [blame] | 1667 | registers. |
| 1668 | |
| 1669 | When using the '=' register you get the expression itself, not what it |
| 1670 | evaluates to. Use |eval()| to evaluate it. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1671 | |
| 1672 | |
Bram Moolenaar | a2baa73 | 2022-02-04 16:09:54 +0000 | [diff] [blame] | 1673 | nesting *expr-nesting* *E110* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1674 | ------- |
| 1675 | (expr1) nested expression |
| 1676 | |
| 1677 | |
| 1678 | environment variable *expr-env* |
| 1679 | -------------------- |
| 1680 | $VAR environment variable |
| 1681 | |
| 1682 | The String value of any environment variable. When it is not defined, the |
| 1683 | result is an empty string. |
Bram Moolenaar | 691ddee | 2019-05-09 14:52:41 +0200 | [diff] [blame] | 1684 | |
| 1685 | The functions `getenv()` and `setenv()` can also be used and work for |
| 1686 | environment variables with non-alphanumeric names. |
| 1687 | The function `environ()` can be used to get a Dict with all environment |
| 1688 | variables. |
| 1689 | |
| 1690 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1691 | *expr-env-expand* |
| 1692 | Note that there is a difference between using $VAR directly and using |
| 1693 | expand("$VAR"). Using it directly will only expand environment variables that |
| 1694 | are known inside the current Vim session. Using expand() will first try using |
| 1695 | the environment variables known inside the current Vim session. If that |
| 1696 | fails, a shell will be used to expand the variable. This can be slow, but it |
| 1697 | does expand all variables that the shell knows about. Example: > |
Bram Moolenaar | 34401cc | 2014-08-29 15:12:19 +0200 | [diff] [blame] | 1698 | :echo $shell |
| 1699 | :echo expand("$shell") |
| 1700 | The first one probably doesn't echo anything, the second echoes the $shell |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1701 | variable (if your shell supports it). |
| 1702 | |
| 1703 | |
Bram Moolenaar | f10911e | 2022-01-29 22:20:48 +0000 | [diff] [blame] | 1704 | internal variable *expr-variable* *E1015* *E1089* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1705 | ----------------- |
| 1706 | variable internal variable |
| 1707 | See below |internal-variables|. |
| 1708 | |
| 1709 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 1710 | function call *expr-function* *E116* *E118* *E119* *E120* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1711 | ------------- |
| 1712 | function(expr1, ...) function call |
| 1713 | See below |functions|. |
| 1714 | |
| 1715 | |
Bram Moolenaar | 069c1e7 | 2016-07-15 21:25:08 +0200 | [diff] [blame] | 1716 | lambda expression *expr-lambda* *lambda* |
| 1717 | ----------------- |
Bram Moolenaar | 938ae28 | 2023-02-20 20:44:55 +0000 | [diff] [blame] | 1718 | {args -> expr1} legacy lambda expression *E451* |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1719 | (args) => expr1 |Vim9| lambda expression |
Bram Moolenaar | 069c1e7 | 2016-07-15 21:25:08 +0200 | [diff] [blame] | 1720 | |
| 1721 | A lambda expression creates a new unnamed function which returns the result of |
Bram Moolenaar | 42ebd06 | 2016-07-17 13:35:14 +0200 | [diff] [blame] | 1722 | evaluating |expr1|. Lambda expressions differ from |user-functions| in |
Bram Moolenaar | 069c1e7 | 2016-07-15 21:25:08 +0200 | [diff] [blame] | 1723 | the following ways: |
| 1724 | |
| 1725 | 1. The body of the lambda expression is an |expr1| and not a sequence of |Ex| |
| 1726 | commands. |
Bram Moolenaar | 1e96d9b | 2016-07-29 22:15:09 +0200 | [diff] [blame] | 1727 | 2. The prefix "a:" should not be used for arguments. E.g.: > |
Bram Moolenaar | 069c1e7 | 2016-07-15 21:25:08 +0200 | [diff] [blame] | 1728 | :let F = {arg1, arg2 -> arg1 - arg2} |
| 1729 | :echo F(5, 2) |
| 1730 | < 3 |
| 1731 | |
| 1732 | The arguments are optional. Example: > |
| 1733 | :let F = {-> 'error function'} |
Bram Moolenaar | 130cbfc | 2021-04-07 21:07:20 +0200 | [diff] [blame] | 1734 | :echo F('ignored') |
Bram Moolenaar | 069c1e7 | 2016-07-15 21:25:08 +0200 | [diff] [blame] | 1735 | < error function |
Bram Moolenaar | 130cbfc | 2021-04-07 21:07:20 +0200 | [diff] [blame] | 1736 | |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1737 | The |Vim9| lambda does not only use a different syntax, it also adds type |
| 1738 | checking and can be split over multiple lines, see |vim9-lambda|. |
Bram Moolenaar | 130cbfc | 2021-04-07 21:07:20 +0200 | [diff] [blame] | 1739 | |
Bram Moolenaar | 1e96d9b | 2016-07-29 22:15:09 +0200 | [diff] [blame] | 1740 | *closure* |
| 1741 | Lambda expressions can access outer scope variables and arguments. This is |
Bram Moolenaar | 50ba526 | 2016-09-22 22:33:02 +0200 | [diff] [blame] | 1742 | often called a closure. Example where "i" and "a:arg" are used in a lambda |
Bram Moolenaar | 6bb2cdf | 2018-02-24 19:53:53 +0100 | [diff] [blame] | 1743 | while they already exist in the function scope. They remain valid even after |
| 1744 | the function returns: > |
Bram Moolenaar | 1e96d9b | 2016-07-29 22:15:09 +0200 | [diff] [blame] | 1745 | :function Foo(arg) |
| 1746 | : let i = 3 |
| 1747 | : return {x -> x + i - a:arg} |
| 1748 | :endfunction |
| 1749 | :let Bar = Foo(4) |
| 1750 | :echo Bar(6) |
| 1751 | < 5 |
Bram Moolenaar | 437bafe | 2016-08-01 15:40:54 +0200 | [diff] [blame] | 1752 | |
Bram Moolenaar | 388a5d4 | 2020-05-26 21:20:45 +0200 | [diff] [blame] | 1753 | Note that the variables must exist in the outer scope before the lambda is |
Bram Moolenaar | 6bb2cdf | 2018-02-24 19:53:53 +0100 | [diff] [blame] | 1754 | defined for this to work. See also |:func-closure|. |
| 1755 | |
| 1756 | Lambda and closure support can be checked with: > |
Bram Moolenaar | 437bafe | 2016-08-01 15:40:54 +0200 | [diff] [blame] | 1757 | if has('lambda') |
Bram Moolenaar | 069c1e7 | 2016-07-15 21:25:08 +0200 | [diff] [blame] | 1758 | |
| 1759 | Examples for using a lambda expression with |sort()|, |map()| and |filter()|: > |
| 1760 | :echo map([1, 2, 3], {idx, val -> val + 1}) |
| 1761 | < [2, 3, 4] > |
| 1762 | :echo sort([3,7,2,1,4], {a, b -> a - b}) |
| 1763 | < [1, 2, 3, 4, 7] |
| 1764 | |
| 1765 | The lambda expression is also useful for Channel, Job and timer: > |
| 1766 | :let timer = timer_start(500, |
| 1767 | \ {-> execute("echo 'Handler called'", "")}, |
| 1768 | \ {'repeat': 3}) |
| 1769 | < Handler called |
| 1770 | Handler called |
| 1771 | Handler called |
| 1772 | |
Bram Moolenaar | 90df4b9 | 2021-07-07 20:26:08 +0200 | [diff] [blame] | 1773 | Note that it is possible to cause memory to be used and not freed if the |
| 1774 | closure is referenced by the context it depends on: > |
| 1775 | function Function() |
| 1776 | let x = 0 |
| 1777 | let F = {-> x} |
| 1778 | endfunction |
| 1779 | The closure uses "x" from the function scope, and "F" in that same scope |
| 1780 | refers to the closure. This cycle results in the memory not being freed. |
| 1781 | Recommendation: don't do this. |
| 1782 | |
| 1783 | Notice how execute() is used to execute an Ex command. That's ugly though. |
Bram Moolenaar | 130cbfc | 2021-04-07 21:07:20 +0200 | [diff] [blame] | 1784 | In Vim9 script you can use a command block, see |inline-function|. |
Bram Moolenaar | 1e96d9b | 2016-07-29 22:15:09 +0200 | [diff] [blame] | 1785 | |
Bram Moolenaar | 71b6d33 | 2022-09-10 13:13:14 +0100 | [diff] [blame] | 1786 | Although you can use the loop variable of a `for` command, it must still exist |
| 1787 | when the closure is called, otherwise you get an error. *E1302* |
| 1788 | |
Bram Moolenaar | 1e96d9b | 2016-07-29 22:15:09 +0200 | [diff] [blame] | 1789 | Lambda expressions have internal names like '<lambda>42'. If you get an error |
| 1790 | for a lambda expression, you can find what it is with the following command: > |
Bram Moolenaar | 6f02b00 | 2021-01-10 20:22:54 +0100 | [diff] [blame] | 1791 | :function <lambda>42 |
Bram Moolenaar | 1e96d9b | 2016-07-29 22:15:09 +0200 | [diff] [blame] | 1792 | See also: |numbered-function| |
| 1793 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1794 | ============================================================================== |
Bram Moolenaar | 6f4754b | 2022-01-23 12:07:04 +0000 | [diff] [blame] | 1795 | 3. Internal variable *internal-variables* *E461* *E1001* |
Bram Moolenaar | 4a74803 | 2010-09-30 21:47:56 +0200 | [diff] [blame] | 1796 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1797 | An internal variable name can be made up of letters, digits and '_'. But it |
Bram Moolenaar | 2f0936c | 2022-01-08 21:51:59 +0000 | [diff] [blame] | 1798 | cannot start with a digit. In legacy script it is also possible to use curly |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1799 | braces, see |curly-braces-names|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1800 | |
Bram Moolenaar | 2f0936c | 2022-01-08 21:51:59 +0000 | [diff] [blame] | 1801 | In legacy script an internal variable is created with the ":let" command |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1802 | |:let|. An internal variable is explicitly destroyed with the ":unlet" |
| 1803 | command |:unlet|. |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 1804 | Using a name that is not an internal variable or refers to a variable that has |
| 1805 | been destroyed results in an error. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1806 | |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1807 | In |Vim9| script `:let` is not used and variables work differently, see |:var|. |
| 1808 | |
Bram Moolenaar | 65e0d77 | 2020-06-14 17:29:55 +0200 | [diff] [blame] | 1809 | *variable-scope* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1810 | There are several name spaces for variables. Which one is to be used is |
| 1811 | specified by what is prepended: |
| 1812 | |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1813 | (nothing) In a function: local to the function; |
| 1814 | in a legacy script: global; |
| 1815 | in a |Vim9| script: local to the script |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1816 | |buffer-variable| b: Local to the current buffer. |
| 1817 | |window-variable| w: Local to the current window. |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 1818 | |tabpage-variable| t: Local to the current tab page. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1819 | |global-variable| g: Global. |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1820 | |local-variable| l: Local to a function (only in a legacy function) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1821 | |script-variable| s: Local to a |:source|'ed Vim script. |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1822 | |function-argument| a: Function argument (only in a legacy function). |
Bram Moolenaar | 75b8156 | 2014-04-06 14:09:13 +0200 | [diff] [blame] | 1823 | |vim-variable| v: Global, predefined by Vim. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1824 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 1825 | The scope name by itself can be used as a |Dictionary|. For example, to |
| 1826 | delete all script-local variables: > |
Bram Moolenaar | 8f999f1 | 2005-01-25 22:12:55 +0000 | [diff] [blame] | 1827 | :for k in keys(s:) |
| 1828 | : unlet s:[k] |
| 1829 | :endfor |
Bram Moolenaar | 65e0d77 | 2020-06-14 17:29:55 +0200 | [diff] [blame] | 1830 | |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 1831 | Note: in Vim9 script variables can also be local to a block of commands, see |
| 1832 | |vim9-scopes|. |
Bram Moolenaar | 531da59 | 2013-05-06 05:58:55 +0200 | [diff] [blame] | 1833 | *buffer-variable* *b:var* *b:* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1834 | A variable name that is preceded with "b:" is local to the current buffer. |
| 1835 | Thus you can have several "b:foo" variables, one for each buffer. |
| 1836 | This kind of variable is deleted when the buffer is wiped out or deleted with |
| 1837 | |:bdelete|. |
| 1838 | |
| 1839 | One local buffer variable is predefined: |
Bram Moolenaar | bf88493 | 2013-04-05 22:26:15 +0200 | [diff] [blame] | 1840 | *b:changedtick* *changetick* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1841 | b:changedtick The total number of changes to the current buffer. It is |
| 1842 | incremented for each change. An undo command is also a change |
Bram Moolenaar | c024b46 | 2019-06-08 18:07:21 +0200 | [diff] [blame] | 1843 | in this case. Resetting 'modified' when writing the buffer is |
| 1844 | also counted. |
| 1845 | This can be used to perform an action only when the buffer has |
| 1846 | changed. Example: > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1847 | :if my_changedtick != b:changedtick |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 1848 | : let my_changedtick = b:changedtick |
| 1849 | : call My_Update() |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1850 | :endif |
Bram Moolenaar | 3df0173 | 2017-02-17 22:47:16 +0100 | [diff] [blame] | 1851 | < You cannot change or delete the b:changedtick variable. |
Bram Moolenaar | 71badf9 | 2023-04-22 22:40:14 +0100 | [diff] [blame] | 1852 | If you need more information about the change see |
| 1853 | |listener_add()|. |
Bram Moolenaar | 3df0173 | 2017-02-17 22:47:16 +0100 | [diff] [blame] | 1854 | |
Bram Moolenaar | 531da59 | 2013-05-06 05:58:55 +0200 | [diff] [blame] | 1855 | *window-variable* *w:var* *w:* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1856 | A variable name that is preceded with "w:" is local to the current window. It |
| 1857 | is deleted when the window is closed. |
| 1858 | |
Bram Moolenaar | ad3b366 | 2013-05-17 18:14:19 +0200 | [diff] [blame] | 1859 | *tabpage-variable* *t:var* *t:* |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 1860 | A variable name that is preceded with "t:" is local to the current tab page, |
| 1861 | It is deleted when the tab page is closed. {not available when compiled |
Bram Moolenaar | db84e45 | 2010-08-15 13:50:43 +0200 | [diff] [blame] | 1862 | without the |+windows| feature} |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 1863 | |
Bram Moolenaar | 531da59 | 2013-05-06 05:58:55 +0200 | [diff] [blame] | 1864 | *global-variable* *g:var* *g:* |
Bram Moolenaar | 04fb916 | 2021-12-30 20:24:12 +0000 | [diff] [blame] | 1865 | Inside functions and in |Vim9| script global variables are accessed with "g:". |
| 1866 | Omitting this will access a variable local to a function or script. "g:" |
| 1867 | can also be used in any other place if you like. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1868 | |
Bram Moolenaar | 531da59 | 2013-05-06 05:58:55 +0200 | [diff] [blame] | 1869 | *local-variable* *l:var* *l:* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1870 | Inside functions local variables are accessed without prepending anything. |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 1871 | But you can also prepend "l:" if you like. However, without prepending "l:" |
| 1872 | you may run into reserved variable names. For example "count". By itself it |
| 1873 | refers to "v:count". Using "l:count" you can have a local variable with the |
| 1874 | same name. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1875 | |
| 1876 | *script-variable* *s:var* |
Bram Moolenaar | 04fb916 | 2021-12-30 20:24:12 +0000 | [diff] [blame] | 1877 | In a legacy Vim script variables starting with "s:" can be used. They cannot |
| 1878 | be accessed from outside of the scripts, thus are local to the script. |
| 1879 | In |Vim9| script the "s:" prefix can be omitted, variables are script-local by |
| 1880 | default. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1881 | |
| 1882 | They can be used in: |
| 1883 | - commands executed while the script is sourced |
| 1884 | - functions defined in the script |
| 1885 | - autocommands defined in the script |
| 1886 | - functions and autocommands defined in functions and autocommands which were |
| 1887 | defined in the script (recursively) |
| 1888 | - user defined commands defined in the script |
| 1889 | Thus not in: |
| 1890 | - other scripts sourced from this one |
| 1891 | - mappings |
Bram Moolenaar | 8f3f58f | 2010-01-06 20:52:26 +0100 | [diff] [blame] | 1892 | - menus |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1893 | - etc. |
| 1894 | |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 1895 | Script variables can be used to avoid conflicts with global variable names. |
| 1896 | Take this example: > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1897 | |
| 1898 | let s:counter = 0 |
| 1899 | function MyCounter() |
| 1900 | let s:counter = s:counter + 1 |
| 1901 | echo s:counter |
| 1902 | endfunction |
| 1903 | command Tick call MyCounter() |
| 1904 | |
| 1905 | You can now invoke "Tick" from any script, and the "s:counter" variable in |
| 1906 | that script will not be changed, only the "s:counter" in the script where |
| 1907 | "Tick" was defined is used. |
| 1908 | |
| 1909 | Another example that does the same: > |
| 1910 | |
| 1911 | let s:counter = 0 |
| 1912 | command Tick let s:counter = s:counter + 1 | echo s:counter |
| 1913 | |
| 1914 | When calling a function and invoking a user-defined command, the context for |
Bram Moolenaar | 69a7cb4 | 2004-06-20 12:51:53 +0000 | [diff] [blame] | 1915 | script variables is set to the script where the function or command was |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1916 | defined. |
| 1917 | |
| 1918 | The script variables are also available when a function is defined inside a |
| 1919 | function that is defined in a script. Example: > |
| 1920 | |
| 1921 | let s:counter = 0 |
| 1922 | function StartCounting(incr) |
| 1923 | if a:incr |
| 1924 | function MyCounter() |
| 1925 | let s:counter = s:counter + 1 |
| 1926 | endfunction |
| 1927 | else |
| 1928 | function MyCounter() |
| 1929 | let s:counter = s:counter - 1 |
| 1930 | endfunction |
| 1931 | endif |
| 1932 | endfunction |
| 1933 | |
| 1934 | This defines the MyCounter() function either for counting up or counting down |
| 1935 | when calling StartCounting(). It doesn't matter from where StartCounting() is |
| 1936 | called, the s:counter variable will be accessible in MyCounter(). |
| 1937 | |
| 1938 | When the same script is sourced again it will use the same script variables. |
| 1939 | They will remain valid as long as Vim is running. This can be used to |
| 1940 | maintain a counter: > |
| 1941 | |
| 1942 | if !exists("s:counter") |
| 1943 | let s:counter = 1 |
| 1944 | echo "script executed for the first time" |
| 1945 | else |
| 1946 | let s:counter = s:counter + 1 |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 1947 | echo "script executed " .. s:counter .. " times now" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1948 | endif |
| 1949 | |
| 1950 | Note that this means that filetype plugins don't get a different set of script |
| 1951 | variables for each buffer. Use local buffer variables instead |b:var|. |
| 1952 | |
| 1953 | |
Bram Moolenaar | d47d522 | 2018-12-09 20:43:55 +0100 | [diff] [blame] | 1954 | PREDEFINED VIM VARIABLES *vim-variable* *v:var* *v:* |
Bram Moolenaar | 6f4754b | 2022-01-23 12:07:04 +0000 | [diff] [blame] | 1955 | *E963* *E1063* |
Bram Moolenaar | d47d522 | 2018-12-09 20:43:55 +0100 | [diff] [blame] | 1956 | Some variables can be set by the user, but the type cannot be changed. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1957 | |
Bram Moolenaar | 69bf634 | 2019-10-29 04:16:57 +0100 | [diff] [blame] | 1958 | *v:argv* *argv-variable* |
| 1959 | v:argv The command line arguments Vim was invoked with. This is a |
| 1960 | list of strings. The first item is the Vim command. |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 1961 | See |v:progpath| for the command with full path. |
Bram Moolenaar | 69bf634 | 2019-10-29 04:16:57 +0100 | [diff] [blame] | 1962 | |
Bram Moolenaar | e4efc3b | 2005-03-07 23:16:51 +0000 | [diff] [blame] | 1963 | *v:beval_col* *beval_col-variable* |
| 1964 | v:beval_col The number of the column, over which the mouse pointer is. |
| 1965 | This is the byte index in the |v:beval_lnum| line. |
| 1966 | Only valid while evaluating the 'balloonexpr' option. |
| 1967 | |
| 1968 | *v:beval_bufnr* *beval_bufnr-variable* |
| 1969 | v:beval_bufnr The number of the buffer, over which the mouse pointer is. Only |
| 1970 | valid while evaluating the 'balloonexpr' option. |
| 1971 | |
| 1972 | *v:beval_lnum* *beval_lnum-variable* |
| 1973 | v:beval_lnum The number of the line, over which the mouse pointer is. Only |
| 1974 | valid while evaluating the 'balloonexpr' option. |
| 1975 | |
| 1976 | *v:beval_text* *beval_text-variable* |
Bram Moolenaar | 24bbcfe | 2005-06-28 23:32:02 +0000 | [diff] [blame] | 1977 | v:beval_text The text under or after the mouse pointer. Usually a word as |
| 1978 | it is useful for debugging a C program. 'iskeyword' applies, |
| 1979 | but a dot and "->" before the position is included. When on a |
| 1980 | ']' the text before it is used, including the matching '[' and |
Bram Moolenaar | e4efc3b | 2005-03-07 23:16:51 +0000 | [diff] [blame] | 1981 | word before it. When on a Visual area within one line the |
Bram Moolenaar | b4d5fba | 2017-09-11 19:31:28 +0200 | [diff] [blame] | 1982 | highlighted text is used. Also see |<cexpr>|. |
Bram Moolenaar | e4efc3b | 2005-03-07 23:16:51 +0000 | [diff] [blame] | 1983 | Only valid while evaluating the 'balloonexpr' option. |
| 1984 | |
| 1985 | *v:beval_winnr* *beval_winnr-variable* |
| 1986 | v:beval_winnr The number of the window, over which the mouse pointer is. Only |
Bram Moolenaar | 0065402 | 2011-02-25 14:42:19 +0100 | [diff] [blame] | 1987 | valid while evaluating the 'balloonexpr' option. The first |
| 1988 | window has number zero (unlike most other places where a |
| 1989 | window gets a number). |
Bram Moolenaar | e4efc3b | 2005-03-07 23:16:51 +0000 | [diff] [blame] | 1990 | |
Bram Moolenaar | 511972d | 2016-06-04 18:09:59 +0200 | [diff] [blame] | 1991 | *v:beval_winid* *beval_winid-variable* |
Bram Moolenaar | 7571d55 | 2016-08-18 22:54:46 +0200 | [diff] [blame] | 1992 | v:beval_winid The |window-ID| of the window, over which the mouse pointer |
| 1993 | is. Otherwise like v:beval_winnr. |
Bram Moolenaar | 511972d | 2016-06-04 18:09:59 +0200 | [diff] [blame] | 1994 | |
Bram Moolenaar | f193fff | 2006-04-27 00:02:13 +0000 | [diff] [blame] | 1995 | *v:char* *char-variable* |
Bram Moolenaar | 8f3f58f | 2010-01-06 20:52:26 +0100 | [diff] [blame] | 1996 | v:char Argument for evaluating 'formatexpr' and used for the typed |
Bram Moolenaar | 945e2db | 2010-06-05 17:43:32 +0200 | [diff] [blame] | 1997 | character when using <expr> in an abbreviation |:map-<expr>|. |
Shougo Matsushita | 8367884 | 2024-07-11 22:05:12 +0200 | [diff] [blame] | 1998 | It is also used by the |InsertCharPre|, |InsertEnter| and |
| 1999 | |KeyInputPre| events. |
Bram Moolenaar | f193fff | 2006-04-27 00:02:13 +0000 | [diff] [blame] | 2000 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2001 | *v:charconvert_from* *charconvert_from-variable* |
| 2002 | v:charconvert_from |
| 2003 | The name of the character encoding of a file to be converted. |
| 2004 | Only valid while evaluating the 'charconvert' option. |
| 2005 | |
| 2006 | *v:charconvert_to* *charconvert_to-variable* |
| 2007 | v:charconvert_to |
| 2008 | The name of the character encoding of a file after conversion. |
| 2009 | Only valid while evaluating the 'charconvert' option. |
| 2010 | |
| 2011 | *v:cmdarg* *cmdarg-variable* |
| 2012 | v:cmdarg This variable is used for two purposes: |
| 2013 | 1. The extra arguments given to a file read/write command. |
| 2014 | Currently these are "++enc=" and "++ff=". This variable is |
| 2015 | set before an autocommand event for a file read/write |
| 2016 | command is triggered. There is a leading space to make it |
| 2017 | possible to append this variable directly after the |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 2018 | read/write command. Note: The "+cmd" argument isn't |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2019 | included here, because it will be executed anyway. |
| 2020 | 2. When printing a PostScript file with ":hardcopy" this is |
| 2021 | the argument for the ":hardcopy" command. This can be used |
| 2022 | in 'printexpr'. |
| 2023 | |
| 2024 | *v:cmdbang* *cmdbang-variable* |
| 2025 | v:cmdbang Set like v:cmdarg for a file read/write command. When a "!" |
| 2026 | was used the value is 1, otherwise it is 0. Note that this |
| 2027 | can only be used in autocommands. For user commands |<bang>| |
| 2028 | can be used. |
zeertzjq | 20e045f | 2024-10-28 22:05:26 +0100 | [diff] [blame] | 2029 | |
| 2030 | *v:cmdcomplete* *cmdcomplete-variable* |
| 2031 | v:cmdcomplete When evaluating 'findexpr': if 'findexpr' is used for cmdline |
| 2032 | completion the value is |v:true|, otherwise it is |v:false|. |
| 2033 | |
Bram Moolenaar | 84cf6bd | 2020-06-16 20:03:43 +0200 | [diff] [blame] | 2034 | *v:collate* *collate-variable* |
| 2035 | v:collate The current locale setting for collation order of the runtime |
| 2036 | environment. This allows Vim scripts to be aware of the |
| 2037 | current locale encoding. Technical: it's the value of |
| 2038 | LC_COLLATE. When not using a locale the value is "C". |
| 2039 | This variable can not be set directly, use the |:language| |
| 2040 | command. |
| 2041 | See |multi-lang|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2042 | |
Bram Moolenaar | 76db9e0 | 2022-11-09 21:21:04 +0000 | [diff] [blame] | 2043 | *v:colornames* |
Drew Vogel | e30d102 | 2021-10-24 20:35:07 +0100 | [diff] [blame] | 2044 | v:colornames A dictionary that maps color names to hex color strings. These |
| 2045 | color names can be used with the |highlight-guifg|, |
Christian Brabandt | 0f4054f | 2024-02-05 10:30:01 +0100 | [diff] [blame] | 2046 | |highlight-guibg|, and |highlight-guisp| parameters. |
| 2047 | |
| 2048 | The key values in the dictionary (the color names) should be |
| 2049 | lower cased, because Vim looks up a color by its lower case |
| 2050 | name. |
| 2051 | |
| 2052 | Updating an entry in v:colornames has no immediate effect on |
| 2053 | the syntax highlighting. The highlight commands (probably in a |
Drew Vogel | e30d102 | 2021-10-24 20:35:07 +0100 | [diff] [blame] | 2054 | colorscheme script) need to be re-evaluated in order to use |
| 2055 | the updated color values. For example: > |
| 2056 | |
| 2057 | :let v:colornames['fuscia'] = '#cf3ab4' |
| 2058 | :let v:colornames['mauve'] = '#915f6d' |
| 2059 | :highlight Normal guifg=fuscia guibg=mauve |
| 2060 | < |
| 2061 | This cannot be used to override the |cterm-colors| but it can |
| 2062 | be used to override other colors. For example, the X11 colors |
| 2063 | defined in the `colors/lists/default.vim` (previously defined |
| 2064 | in |rgb.txt|). When defining new color names in a plugin, the |
| 2065 | recommended practice is to set a color entry only when it does |
| 2066 | not already exist. For example: > |
| 2067 | |
| 2068 | :call extend(v:colornames, { |
| 2069 | \ 'fuscia': '#cf3ab4', |
| 2070 | \ 'mauve': '#915f6d, |
| 2071 | \ }, 'keep') |
| 2072 | < |
Bram Moolenaar | 113cb51 | 2021-11-07 20:27:04 +0000 | [diff] [blame] | 2073 | Using |extend()| with the 'keep' option updates each color only |
Drew Vogel | e30d102 | 2021-10-24 20:35:07 +0100 | [diff] [blame] | 2074 | if it did not exist in |v:colornames|. Doing so allows the |
| 2075 | user to choose the precise color value for a common name |
| 2076 | by setting it in their |.vimrc|. |
| 2077 | |
| 2078 | It is possible to remove entries from this dictionary but |
Drew Vogel | a0fca17 | 2021-11-13 10:50:01 +0000 | [diff] [blame] | 2079 | doing so is NOT recommended, because it is disruptive to |
Drew Vogel | e30d102 | 2021-10-24 20:35:07 +0100 | [diff] [blame] | 2080 | other scripts. It is also unlikely to achieve the desired |
Bram Moolenaar | 113cb51 | 2021-11-07 20:27:04 +0000 | [diff] [blame] | 2081 | result because the |:colorscheme| and |:highlight| commands will |
Drew Vogel | e30d102 | 2021-10-24 20:35:07 +0100 | [diff] [blame] | 2082 | both automatically load all `colors/lists/default.vim` color |
| 2083 | scripts. |
| 2084 | |
Alin Mr | 6d1d180 | 2024-03-20 20:26:23 +0100 | [diff] [blame] | 2085 | You can make changes to that file, but make sure to add new |
| 2086 | keys instead of updating existing ones, otherwise Vim will skip |
| 2087 | loading the file (thinking is hasn't been changed). |
| 2088 | |
Bram Moolenaar | 42a4512 | 2015-07-10 17:56:23 +0200 | [diff] [blame] | 2089 | *v:completed_item* *completed_item-variable* |
| 2090 | v:completed_item |
| 2091 | |Dictionary| containing the |complete-items| for the most |
| 2092 | recently completed word after |CompleteDone|. The |
| 2093 | |Dictionary| is empty if the completion failed. |
Shougo Matsushita | 61021aa | 2022-07-27 14:40:00 +0100 | [diff] [blame] | 2094 | Note: Plugins can modify the value to emulate the builtin |
| 2095 | |CompleteDone| event behavior. |
Bram Moolenaar | 42a4512 | 2015-07-10 17:56:23 +0200 | [diff] [blame] | 2096 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2097 | *v:count* *count-variable* |
| 2098 | v:count The count given for the last Normal mode command. Can be used |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 2099 | to get the count before a mapping. Read-only. Example: > |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 2100 | :map _x :<C-U>echo "the count is " .. v:count<CR> |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2101 | < Note: The <C-U> is required to remove the line range that you |
| 2102 | get when typing ':' after a count. |
Bram Moolenaar | 8f3f58f | 2010-01-06 20:52:26 +0100 | [diff] [blame] | 2103 | When there are two counts, as in "3d2w", they are multiplied, |
| 2104 | just like what happens in the command, "d6w" for the example. |
Bram Moolenaar | 1d2ba7f | 2006-02-14 22:29:30 +0000 | [diff] [blame] | 2105 | Also used for evaluating the 'formatexpr' option. |
Bram Moolenaar | d2e716e | 2019-04-20 14:39:52 +0200 | [diff] [blame] | 2106 | "count" also works, for backwards compatibility, unless |
| 2107 | |scriptversion| is 3 or higher. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2108 | |
| 2109 | *v:count1* *count1-variable* |
| 2110 | v:count1 Just like "v:count", but defaults to one when no count is |
| 2111 | used. |
| 2112 | |
| 2113 | *v:ctype* *ctype-variable* |
| 2114 | v:ctype The current locale setting for characters of the runtime |
| 2115 | environment. This allows Vim scripts to be aware of the |
| 2116 | current locale encoding. Technical: it's the value of |
| 2117 | LC_CTYPE. When not using a locale the value is "C". |
| 2118 | This variable can not be set directly, use the |:language| |
| 2119 | command. |
| 2120 | See |multi-lang|. |
| 2121 | |
| 2122 | *v:dying* *dying-variable* |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 2123 | v:dying Normally zero. When a deadly signal is caught it's set to |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2124 | one. When multiple signals are caught the number increases. |
| 2125 | Can be used in an autocommand to check if Vim didn't |
| 2126 | terminate normally. {only works on Unix} |
| 2127 | Example: > |
| 2128 | :au VimLeave * if v:dying | echo "\nAAAAaaaarrrggghhhh!!!\n" | endif |
Bram Moolenaar | 0e1e25f | 2010-05-28 21:07:08 +0200 | [diff] [blame] | 2129 | < Note: if another deadly signal is caught when v:dying is one, |
| 2130 | VimLeave autocommands will not be executed. |
| 2131 | |
Bram Moolenaar | f0068c5 | 2020-11-30 17:42:10 +0100 | [diff] [blame] | 2132 | *v:exiting* *exiting-variable* |
| 2133 | v:exiting Vim exit code. Normally zero, non-zero when something went |
| 2134 | wrong. The value is v:null before invoking the |VimLeavePre| |
| 2135 | and |VimLeave| autocmds. See |:q|, |:x| and |:cquit|. |
| 2136 | Example: > |
| 2137 | :au VimLeave * echo "Exit value is " .. v:exiting |
| 2138 | < |
Bram Moolenaar | 37f4cbd | 2019-08-23 20:58:45 +0200 | [diff] [blame] | 2139 | *v:echospace* *echospace-variable* |
| 2140 | v:echospace Number of screen cells that can be used for an `:echo` message |
| 2141 | in the last screen line before causing the |hit-enter-prompt|. |
| 2142 | Depends on 'showcmd', 'ruler' and 'columns'. You need to |
| 2143 | check 'cmdheight' for whether there are full-width lines |
| 2144 | available above the last line. |
| 2145 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2146 | *v:errmsg* *errmsg-variable* |
| 2147 | v:errmsg Last given error message. It's allowed to set this variable. |
| 2148 | Example: > |
| 2149 | :let v:errmsg = "" |
| 2150 | :silent! next |
| 2151 | :if v:errmsg != "" |
| 2152 | : ... handle error |
Bram Moolenaar | d2e716e | 2019-04-20 14:39:52 +0200 | [diff] [blame] | 2153 | < "errmsg" also works, for backwards compatibility, unless |
| 2154 | |scriptversion| is 3 or higher. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2155 | |
Bram Moolenaar | 65a5464 | 2018-04-28 16:56:53 +0200 | [diff] [blame] | 2156 | *v:errors* *errors-variable* *assert-return* |
Bram Moolenaar | 683fa18 | 2015-11-30 21:38:24 +0100 | [diff] [blame] | 2157 | v:errors Errors found by assert functions, such as |assert_true()|. |
Bram Moolenaar | 4334554 | 2015-11-29 17:35:35 +0100 | [diff] [blame] | 2158 | This is a list of strings. |
| 2159 | The assert functions append an item when an assert fails. |
Bram Moolenaar | 65a5464 | 2018-04-28 16:56:53 +0200 | [diff] [blame] | 2160 | The return value indicates this: a one is returned if an item |
| 2161 | was added to v:errors, otherwise zero is returned. |
Bram Moolenaar | 4334554 | 2015-11-29 17:35:35 +0100 | [diff] [blame] | 2162 | To remove old results make it empty: > |
| 2163 | :let v:errors = [] |
| 2164 | < If v:errors is set to anything but a list it is made an empty |
| 2165 | list by the assert function. |
| 2166 | |
Bram Moolenaar | 7e1652c | 2017-12-16 18:27:02 +0100 | [diff] [blame] | 2167 | *v:event* *event-variable* |
| 2168 | v:event Dictionary containing information about the current |
Bram Moolenaar | 560979e | 2020-02-04 22:53:05 +0100 | [diff] [blame] | 2169 | |autocommand|. See the specific event for what it puts in |
| 2170 | this dictionary. |
Bram Moolenaar | 2c7f8c5 | 2020-04-20 19:52:53 +0200 | [diff] [blame] | 2171 | The dictionary is emptied when the |autocommand| finishes, |
| 2172 | please refer to |dict-identity| for how to get an independent |
| 2173 | copy of it. Use |deepcopy()| if you want to keep the |
| 2174 | information after the event triggers. Example: > |
| 2175 | au TextYankPost * let g:foo = deepcopy(v:event) |
| 2176 | < |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2177 | *v:exception* *exception-variable* |
| 2178 | v:exception The value of the exception most recently caught and not |
| 2179 | finished. See also |v:throwpoint| and |throw-variables|. |
| 2180 | Example: > |
| 2181 | :try |
| 2182 | : throw "oops" |
| 2183 | :catch /.*/ |
Bram Moolenaar | 5477506 | 2019-07-31 21:07:14 +0200 | [diff] [blame] | 2184 | : echo "caught " .. v:exception |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2185 | :endtry |
| 2186 | < Output: "caught oops". |
| 2187 | |
Bram Moolenaar | 520e1e4 | 2016-01-23 19:46:28 +0100 | [diff] [blame] | 2188 | *v:false* *false-variable* |
| 2189 | v:false A Number with value zero. Used to put "false" in JSON. See |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 2190 | |json_encode()|. |
Bram Moolenaar | c95a302 | 2016-06-12 23:01:46 +0200 | [diff] [blame] | 2191 | When used as a string this evaluates to "v:false". > |
Bram Moolenaar | 705ada1 | 2016-01-24 17:56:50 +0100 | [diff] [blame] | 2192 | echo v:false |
Bram Moolenaar | c95a302 | 2016-06-12 23:01:46 +0200 | [diff] [blame] | 2193 | < v:false ~ |
| 2194 | That is so that eval() can parse the string back to the same |
Bram Moolenaar | df48fb4 | 2016-07-22 21:50:18 +0200 | [diff] [blame] | 2195 | value. Read-only. |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 2196 | In |Vim9| script "false" can be used which has a boolean type. |
Bram Moolenaar | 520e1e4 | 2016-01-23 19:46:28 +0100 | [diff] [blame] | 2197 | |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2198 | *v:fcs_reason* *fcs_reason-variable* |
| 2199 | v:fcs_reason The reason why the |FileChangedShell| event was triggered. |
| 2200 | Can be used in an autocommand to decide what to do and/or what |
| 2201 | to set v:fcs_choice to. Possible values: |
| 2202 | deleted file no longer exists |
| 2203 | conflict file contents, mode or timestamp was |
| 2204 | changed and buffer is modified |
| 2205 | changed file contents has changed |
| 2206 | mode mode of file changed |
| 2207 | time only file timestamp changed |
| 2208 | |
| 2209 | *v:fcs_choice* *fcs_choice-variable* |
| 2210 | v:fcs_choice What should happen after a |FileChangedShell| event was |
| 2211 | triggered. Can be used in an autocommand to tell Vim what to |
| 2212 | do with the affected buffer: |
| 2213 | reload Reload the buffer (does not work if |
| 2214 | the file was deleted). |
Rob Pilling | 8196e94 | 2022-02-11 15:12:10 +0000 | [diff] [blame] | 2215 | edit Reload the buffer and detect the |
| 2216 | values for options such as |
| 2217 | 'fileformat', 'fileencoding', 'binary' |
| 2218 | (does not work if the file was |
| 2219 | deleted). |
Bram Moolenaar | 19a09a1 | 2005-03-04 23:39:37 +0000 | [diff] [blame] | 2220 | ask Ask the user what to do, as if there |
| 2221 | was no autocommand. Except that when |
| 2222 | only the timestamp changed nothing |
| 2223 | will happen. |
| 2224 | <empty> Nothing, the autocommand should do |
| 2225 | everything that needs to be done. |
| 2226 | The default is empty. If another (invalid) value is used then |
| 2227 | Vim behaves like it is empty, there is no warning message. |
| 2228 | |
Bram Moolenaar | 4c29502 | 2021-05-02 17:19:11 +0200 | [diff] [blame] | 2229 | *v:fname* *fname-variable* |
Bram Moolenaar | 90df4b9 | 2021-07-07 20:26:08 +0200 | [diff] [blame] | 2230 | v:fname When evaluating 'includeexpr': the file name that was |
Yegappan Lakshmanan | aeb1c97 | 2024-10-22 23:42:20 +0200 | [diff] [blame] | 2231 | detected. When evaluating 'findexpr': the argument passed to |
| 2232 | the |:find| command. Empty otherwise. |
Bram Moolenaar | 4c29502 | 2021-05-02 17:19:11 +0200 | [diff] [blame] | 2233 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2234 | *v:fname_in* *fname_in-variable* |
Bram Moolenaar | 4e330bb | 2005-12-07 21:04:31 +0000 | [diff] [blame] | 2235 | v:fname_in The name of the input file. Valid while evaluating: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2236 | option used for ~ |
| 2237 | 'charconvert' file to be converted |
| 2238 | 'diffexpr' original file |
| 2239 | 'patchexpr' original file |
| 2240 | 'printexpr' file to be printed |
Bram Moolenaar | 2c7a29c | 2005-12-12 22:02:31 +0000 | [diff] [blame] | 2241 | And set to the swap file name for |SwapExists|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2242 | |
| 2243 | *v:fname_out* *fname_out-variable* |
| 2244 | v:fname_out The name of the output file. Only valid while |
| 2245 | evaluating: |
| 2246 | option used for ~ |
| 2247 | 'charconvert' resulting converted file (*) |
| 2248 | 'diffexpr' output of diff |
| 2249 | 'patchexpr' resulting patched file |
| 2250 | (*) When doing conversion for a write command (e.g., ":w |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 2251 | file") it will be equal to v:fname_in. When doing conversion |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2252 | for a read command (e.g., ":e file") it will be a temporary |
| 2253 | file and different from v:fname_in. |
| 2254 | |
| 2255 | *v:fname_new* *fname_new-variable* |
| 2256 | v:fname_new The name of the new version of the file. Only valid while |
| 2257 | evaluating 'diffexpr'. |
| 2258 | |
| 2259 | *v:fname_diff* *fname_diff-variable* |
| 2260 | v:fname_diff The name of the diff (patch) file. Only valid while |
| 2261 | evaluating 'patchexpr'. |
| 2262 | |
| 2263 | *v:folddashes* *folddashes-variable* |
| 2264 | v:folddashes Used for 'foldtext': dashes representing foldlevel of a closed |
| 2265 | fold. |
Bram Moolenaar | 7b0294c | 2004-10-11 10:16:09 +0000 | [diff] [blame] | 2266 | Read-only in the |sandbox|. |fold-foldtext| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2267 | |
| 2268 | *v:foldlevel* *foldlevel-variable* |
| 2269 | v:foldlevel Used for 'foldtext': foldlevel of closed fold. |
Bram Moolenaar | 7b0294c | 2004-10-11 10:16:09 +0000 | [diff] [blame] | 2270 | Read-only in the |sandbox|. |fold-foldtext| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2271 | |
| 2272 | *v:foldend* *foldend-variable* |
| 2273 | v:foldend Used for 'foldtext': last line of closed fold. |
Bram Moolenaar | 7b0294c | 2004-10-11 10:16:09 +0000 | [diff] [blame] | 2274 | Read-only in the |sandbox|. |fold-foldtext| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2275 | |
| 2276 | *v:foldstart* *foldstart-variable* |
| 2277 | v:foldstart Used for 'foldtext': first line of closed fold. |
Bram Moolenaar | 7b0294c | 2004-10-11 10:16:09 +0000 | [diff] [blame] | 2278 | Read-only in the |sandbox|. |fold-foldtext| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2279 | |
Bram Moolenaar | 817a880 | 2013-11-09 01:44:43 +0100 | [diff] [blame] | 2280 | *v:hlsearch* *hlsearch-variable* |
Bram Moolenaar | b0d45e7 | 2017-11-05 18:19:24 +0100 | [diff] [blame] | 2281 | v:hlsearch Variable that indicates whether search highlighting is on. |
Bram Moolenaar | 76440e2 | 2014-11-27 19:14:49 +0100 | [diff] [blame] | 2282 | Setting it makes sense only if 'hlsearch' is enabled which |
| 2283 | requires |+extra_search|. Setting this variable to zero acts |
Bram Moolenaar | 705ada1 | 2016-01-24 17:56:50 +0100 | [diff] [blame] | 2284 | like the |:nohlsearch| command, setting it to one acts like > |
Bram Moolenaar | 817a880 | 2013-11-09 01:44:43 +0100 | [diff] [blame] | 2285 | let &hlsearch = &hlsearch |
Bram Moolenaar | 86ae720 | 2015-07-10 19:31:35 +0200 | [diff] [blame] | 2286 | < Note that the value is restored when returning from a |
| 2287 | function. |function-search-undo|. |
| 2288 | |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 2289 | *v:insertmode* *insertmode-variable* |
| 2290 | v:insertmode Used for the |InsertEnter| and |InsertChange| autocommand |
| 2291 | events. Values: |
| 2292 | i Insert mode |
| 2293 | r Replace mode |
| 2294 | v Virtual Replace mode |
| 2295 | |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 2296 | *v:key* *key-variable* |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2297 | v:key Key of the current item of a |Dictionary|. Only valid while |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 2298 | evaluating the expression used with |map()| and |filter()|. |
| 2299 | Read-only. |
| 2300 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2301 | *v:lang* *lang-variable* |
| 2302 | v:lang The current locale setting for messages of the runtime |
| 2303 | environment. This allows Vim scripts to be aware of the |
| 2304 | current language. Technical: it's the value of LC_MESSAGES. |
| 2305 | The value is system dependent. |
| 2306 | This variable can not be set directly, use the |:language| |
| 2307 | command. |
| 2308 | It can be different from |v:ctype| when messages are desired |
| 2309 | in a different language than what is used for character |
| 2310 | encoding. See |multi-lang|. |
| 2311 | |
| 2312 | *v:lc_time* *lc_time-variable* |
| 2313 | v:lc_time The current locale setting for time messages of the runtime |
| 2314 | environment. This allows Vim scripts to be aware of the |
| 2315 | current language. Technical: it's the value of LC_TIME. |
| 2316 | This variable can not be set directly, use the |:language| |
| 2317 | command. See |multi-lang|. |
| 2318 | |
| 2319 | *v:lnum* *lnum-variable* |
Bram Moolenaar | 368373e | 2010-07-19 20:46:22 +0200 | [diff] [blame] | 2320 | v:lnum Line number for the 'foldexpr' |fold-expr|, 'formatexpr' and |
| 2321 | 'indentexpr' expressions, tab page number for 'guitablabel' |
| 2322 | and 'guitabtooltip'. Only valid while one of these |
| 2323 | expressions is being evaluated. Read-only when in the |
| 2324 | |sandbox|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2325 | |
naohiro ono | 56200ee | 2022-01-01 14:59:44 +0000 | [diff] [blame] | 2326 | *v:maxcol* *maxcol-variable* |
Bram Moolenaar | 2f0936c | 2022-01-08 21:51:59 +0000 | [diff] [blame] | 2327 | v:maxcol Maximum line length. Depending on where it is used it can be |
Bram Moolenaar | 944697a | 2022-02-20 19:48:20 +0000 | [diff] [blame] | 2328 | screen columns, characters or bytes. The value currently is |
| 2329 | 2147483647 on all systems. |
naohiro ono | 56200ee | 2022-01-01 14:59:44 +0000 | [diff] [blame] | 2330 | |
Bram Moolenaar | 219b870 | 2006-11-01 14:32:36 +0000 | [diff] [blame] | 2331 | *v:mouse_win* *mouse_win-variable* |
| 2332 | v:mouse_win Window number for a mouse click obtained with |getchar()|. |
| 2333 | First window has number 1, like with |winnr()|. The value is |
| 2334 | zero when there was no mouse button click. |
| 2335 | |
Bram Moolenaar | 511972d | 2016-06-04 18:09:59 +0200 | [diff] [blame] | 2336 | *v:mouse_winid* *mouse_winid-variable* |
| 2337 | v:mouse_winid Window ID for a mouse click obtained with |getchar()|. |
| 2338 | The value is zero when there was no mouse button click. |
| 2339 | |
Bram Moolenaar | 219b870 | 2006-11-01 14:32:36 +0000 | [diff] [blame] | 2340 | *v:mouse_lnum* *mouse_lnum-variable* |
| 2341 | v:mouse_lnum Line number for a mouse click obtained with |getchar()|. |
| 2342 | This is the text line number, not the screen line number. The |
| 2343 | value is zero when there was no mouse button click. |
| 2344 | |
| 2345 | *v:mouse_col* *mouse_col-variable* |
| 2346 | v:mouse_col Column number for a mouse click obtained with |getchar()|. |
| 2347 | This is the screen column number, like with |virtcol()|. The |
| 2348 | value is zero when there was no mouse button click. |
| 2349 | |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 2350 | *v:none* *none-variable* *None* |
Bram Moolenaar | 520e1e4 | 2016-01-23 19:46:28 +0100 | [diff] [blame] | 2351 | v:none An empty String. Used to put an empty item in JSON. See |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 2352 | |json_encode()|. |
Bram Moolenaar | 2547aa9 | 2020-07-26 17:00:44 +0200 | [diff] [blame] | 2353 | This can also be used as a function argument to use the |
| 2354 | default value, see |none-function_argument|. |
Bram Moolenaar | 705ada1 | 2016-01-24 17:56:50 +0100 | [diff] [blame] | 2355 | When used as a number this evaluates to zero. |
Bram Moolenaar | c95a302 | 2016-06-12 23:01:46 +0200 | [diff] [blame] | 2356 | When used as a string this evaluates to "v:none". > |
Bram Moolenaar | 705ada1 | 2016-01-24 17:56:50 +0100 | [diff] [blame] | 2357 | echo v:none |
Bram Moolenaar | c95a302 | 2016-06-12 23:01:46 +0200 | [diff] [blame] | 2358 | < v:none ~ |
| 2359 | That is so that eval() can parse the string back to the same |
Bram Moolenaar | df48fb4 | 2016-07-22 21:50:18 +0200 | [diff] [blame] | 2360 | value. Read-only. |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 2361 | Note that using `== v:none` and `!= v:none` will often give |
| 2362 | an error. Instead, use `is v:none` and `isnot v:none` . |
Bram Moolenaar | 520e1e4 | 2016-01-23 19:46:28 +0100 | [diff] [blame] | 2363 | |
| 2364 | *v:null* *null-variable* |
| 2365 | v:null An empty String. Used to put "null" in JSON. See |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 2366 | |json_encode()|. |
Bram Moolenaar | 705ada1 | 2016-01-24 17:56:50 +0100 | [diff] [blame] | 2367 | When used as a number this evaluates to zero. |
Bram Moolenaar | c95a302 | 2016-06-12 23:01:46 +0200 | [diff] [blame] | 2368 | When used as a string this evaluates to "v:null". > |
Bram Moolenaar | 705ada1 | 2016-01-24 17:56:50 +0100 | [diff] [blame] | 2369 | echo v:null |
Bram Moolenaar | c95a302 | 2016-06-12 23:01:46 +0200 | [diff] [blame] | 2370 | < v:null ~ |
| 2371 | That is so that eval() can parse the string back to the same |
Bram Moolenaar | df48fb4 | 2016-07-22 21:50:18 +0200 | [diff] [blame] | 2372 | value. Read-only. |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 2373 | In |Vim9| script `null` can be used without "v:". |
| 2374 | In some places `v:null` and `null` can be used for a List, |
| 2375 | Dict, Job, etc. that is not set. That is slightly different |
| 2376 | than an empty List, Dict, etc. |
Bram Moolenaar | 520e1e4 | 2016-01-23 19:46:28 +0100 | [diff] [blame] | 2377 | |
Bram Moolenaar | 57d5a01 | 2021-01-21 21:42:31 +0100 | [diff] [blame] | 2378 | *v:numbermax* *numbermax-variable* |
| 2379 | v:numbermax Maximum value of a number. |
| 2380 | |
Bram Moolenaar | e0e3917 | 2021-01-25 21:14:57 +0100 | [diff] [blame] | 2381 | *v:numbermin* *numbermin-variable* |
Bram Moolenaar | 2346a63 | 2021-06-13 19:02:49 +0200 | [diff] [blame] | 2382 | v:numbermin Minimum value of a number (negative). |
Bram Moolenaar | 57d5a01 | 2021-01-21 21:42:31 +0100 | [diff] [blame] | 2383 | |
Bram Moolenaar | f9706e9 | 2020-02-22 14:27:04 +0100 | [diff] [blame] | 2384 | *v:numbersize* *numbersize-variable* |
| 2385 | v:numbersize Number of bits in a Number. This is normally 64, but on some |
Bram Moolenaar | bc93ceb | 2020-02-26 13:36:21 +0100 | [diff] [blame] | 2386 | systems it may be 32. |
Bram Moolenaar | f9706e9 | 2020-02-22 14:27:04 +0100 | [diff] [blame] | 2387 | |
Bram Moolenaar | d812df6 | 2008-11-09 12:46:09 +0000 | [diff] [blame] | 2388 | *v:oldfiles* *oldfiles-variable* |
| 2389 | v:oldfiles List of file names that is loaded from the |viminfo| file on |
| 2390 | startup. These are the files that Vim remembers marks for. |
| 2391 | The length of the List is limited by the ' argument of the |
| 2392 | 'viminfo' option (default is 100). |
Bram Moolenaar | 8d04317 | 2014-01-23 14:24:41 +0100 | [diff] [blame] | 2393 | When the |viminfo| file is not used the List is empty. |
Bram Moolenaar | d812df6 | 2008-11-09 12:46:09 +0000 | [diff] [blame] | 2394 | Also see |:oldfiles| and |c_#<|. |
| 2395 | The List can be modified, but this has no effect on what is |
| 2396 | stored in the |viminfo| file later. If you use values other |
| 2397 | than String this will cause trouble. |
Bram Moolenaar | db84e45 | 2010-08-15 13:50:43 +0200 | [diff] [blame] | 2398 | {only when compiled with the |+viminfo| feature} |
Bram Moolenaar | d812df6 | 2008-11-09 12:46:09 +0000 | [diff] [blame] | 2399 | |
Bram Moolenaar | 5374430 | 2015-07-17 17:38:22 +0200 | [diff] [blame] | 2400 | *v:option_new* |
| 2401 | v:option_new New value of the option. Valid while executing an |OptionSet| |
| 2402 | autocommand. |
| 2403 | *v:option_old* |
| 2404 | v:option_old Old value of the option. Valid while executing an |OptionSet| |
Bram Moolenaar | d7c9687 | 2019-06-15 17:12:48 +0200 | [diff] [blame] | 2405 | autocommand. Depending on the command used for setting and the |
| 2406 | kind of option this is either the local old value or the |
| 2407 | global old value. |
| 2408 | *v:option_oldlocal* |
| 2409 | v:option_oldlocal |
| 2410 | Old local value of the option. Valid while executing an |
| 2411 | |OptionSet| autocommand. |
| 2412 | *v:option_oldglobal* |
| 2413 | v:option_oldglobal |
| 2414 | Old global value of the option. Valid while executing an |
| 2415 | |OptionSet| autocommand. |
Bram Moolenaar | 5374430 | 2015-07-17 17:38:22 +0200 | [diff] [blame] | 2416 | *v:option_type* |
| 2417 | v:option_type Scope of the set command. Valid while executing an |
| 2418 | |OptionSet| autocommand. Can be either "global" or "local" |
Bram Moolenaar | d7c9687 | 2019-06-15 17:12:48 +0200 | [diff] [blame] | 2419 | *v:option_command* |
| 2420 | v:option_command |
| 2421 | Command used to set the option. Valid while executing an |
| 2422 | |OptionSet| autocommand. |
| 2423 | value option was set via ~ |
| 2424 | "setlocal" |:setlocal| or ":let l:xxx" |
| 2425 | "setglobal" |:setglobal| or ":let g:xxx" |
| 2426 | "set" |:set| or |:let| |
| 2427 | "modeline" |modeline| |
Bram Moolenaar | 8af1fbf | 2008-01-05 12:35:21 +0000 | [diff] [blame] | 2428 | *v:operator* *operator-variable* |
| 2429 | v:operator The last operator given in Normal mode. This is a single |
| 2430 | character except for commands starting with <g> or <z>, |
| 2431 | in which case it is two characters. Best used alongside |
| 2432 | |v:prevcount| and |v:register|. Useful if you want to cancel |
| 2433 | Operator-pending mode and then use the operator, e.g.: > |
| 2434 | :omap O <Esc>:call MyMotion(v:operator)<CR> |
| 2435 | < The value remains set until another operator is entered, thus |
| 2436 | don't expect it to be empty. |
| 2437 | v:operator is not set for |:delete|, |:yank| or other Ex |
| 2438 | commands. |
| 2439 | Read-only. |
| 2440 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2441 | *v:prevcount* *prevcount-variable* |
| 2442 | v:prevcount The count given for the last but one Normal mode command. |
| 2443 | This is the v:count value of the previous command. Useful if |
Bram Moolenaar | 8af1fbf | 2008-01-05 12:35:21 +0000 | [diff] [blame] | 2444 | you want to cancel Visual or Operator-pending mode and then |
| 2445 | use the count, e.g.: > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2446 | :vmap % <Esc>:call MyFilter(v:prevcount)<CR> |
| 2447 | < Read-only. |
| 2448 | |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 2449 | *v:profiling* *profiling-variable* |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 2450 | v:profiling Normally zero. Set to one after using ":profile start". |
Bram Moolenaar | 05159a0 | 2005-02-26 23:04:13 +0000 | [diff] [blame] | 2451 | See |profiling|. |
| 2452 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2453 | *v:progname* *progname-variable* |
| 2454 | v:progname Contains the name (with path removed) with which Vim was |
Bram Moolenaar | d38b055 | 2012-04-25 19:07:41 +0200 | [diff] [blame] | 2455 | invoked. Allows you to do special initialisations for |view|, |
| 2456 | |evim| etc., or any other name you might symlink to Vim. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2457 | Read-only. |
| 2458 | |
Bram Moolenaar | a1706c9 | 2014-04-01 19:55:49 +0200 | [diff] [blame] | 2459 | *v:progpath* *progpath-variable* |
Bram Moolenaar | 56c860c | 2019-08-17 20:09:31 +0200 | [diff] [blame] | 2460 | v:progpath Contains the command with which Vim was invoked, in a form |
| 2461 | that when passed to the shell will run the same Vim executable |
| 2462 | as the current one (if $PATH remains unchanged). |
| 2463 | Useful if you want to message a Vim server using a |
Bram Moolenaar | a1706c9 | 2014-04-01 19:55:49 +0200 | [diff] [blame] | 2464 | |--remote-expr|. |
Bram Moolenaar | c7f0255 | 2014-04-01 21:00:59 +0200 | [diff] [blame] | 2465 | To get the full path use: > |
| 2466 | echo exepath(v:progpath) |
Bram Moolenaar | 56c860c | 2019-08-17 20:09:31 +0200 | [diff] [blame] | 2467 | < If the command has a relative path it will be expanded to the |
| 2468 | full path, so that it still works after `:cd`. Thus starting |
| 2469 | "./vim" results in "/home/user/path/to/vim/src/vim". |
| 2470 | On Linux and other systems it will always be the full path. |
| 2471 | On Mac it may just be "vim" and using exepath() as mentioned |
| 2472 | above should be used to get the full path. |
Bram Moolenaar | 08cab96 | 2017-03-04 14:37:18 +0100 | [diff] [blame] | 2473 | On MS-Windows the executable may be called "vim.exe", but the |
| 2474 | ".exe" is not added to v:progpath. |
Bram Moolenaar | a1706c9 | 2014-04-01 19:55:49 +0200 | [diff] [blame] | 2475 | Read-only. |
| 2476 | |
h_east | ba77bbb | 2023-10-03 04:47:13 +0900 | [diff] [blame] | 2477 | *v:python3_version* *python3-version-variable* |
Yee Cheng Chin | c13b3d1 | 2023-08-20 21:18:38 +0200 | [diff] [blame] | 2478 | v:python3_version |
| 2479 | Version of Python 3 that Vim was built against. When |
| 2480 | Python is loaded dynamically (|python-dynamic|), this version |
| 2481 | should exactly match the Python library up to the minor |
| 2482 | version (e.g. 3.10.2 and 3.10.3 are compatible as the minor |
| 2483 | version is "10", whereas 3.9.4 and 3.10.3 are not compatible). |
| 2484 | When |python-stable-abi| is used, this will be the minimum Python |
| 2485 | version that you can use instead. (e.g. if v:python3_version |
| 2486 | indicates 3.9, you can use 3.9, 3.10, or anything above). |
| 2487 | |
| 2488 | This number is encoded as a hex number following Python ABI |
| 2489 | versioning conventions. Do the following to have a |
| 2490 | human-readable full version in hex: > |
| 2491 | echo printf("%08X", v:python3_version) |
| 2492 | < You can obtain only the minor version by doing: > |
| 2493 | echo and(v:python3_version>>16,0xff) |
| 2494 | < Read-only. |
| 2495 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2496 | *v:register* *register-variable* |
Bram Moolenaar | d58e929 | 2011-02-09 17:07:58 +0100 | [diff] [blame] | 2497 | v:register The name of the register in effect for the current normal mode |
Bram Moolenaar | d38b055 | 2012-04-25 19:07:41 +0200 | [diff] [blame] | 2498 | command (regardless of whether that command actually used a |
| 2499 | register). Or for the currently executing normal mode mapping |
| 2500 | (use this in custom commands that take a register). |
| 2501 | If none is supplied it is the default register '"', unless |
| 2502 | 'clipboard' contains "unnamed" or "unnamedplus", then it is |
| 2503 | '*' or '+'. |
Bram Moolenaar | d58e929 | 2011-02-09 17:07:58 +0100 | [diff] [blame] | 2504 | Also see |getreg()| and |setreg()| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2505 | |
Bram Moolenaar | 1c7715d | 2005-10-03 22:02:18 +0000 | [diff] [blame] | 2506 | *v:scrollstart* *scrollstart-variable* |
| 2507 | v:scrollstart String describing the script or function that caused the |
| 2508 | screen to scroll up. It's only set when it is empty, thus the |
| 2509 | first reason is remembered. It is set to "Unknown" for a |
| 2510 | typed command. |
| 2511 | This can be used to find out why your script causes the |
| 2512 | hit-enter prompt. |
| 2513 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2514 | *v:servername* *servername-variable* |
Bram Moolenaar | c2ce52c | 2017-08-01 18:35:38 +0200 | [diff] [blame] | 2515 | v:servername The resulting registered |client-server-name| if any. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2516 | Read-only. |
| 2517 | |
Bram Moolenaar | b0d45e7 | 2017-11-05 18:19:24 +0100 | [diff] [blame] | 2518 | |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 2519 | v:searchforward *v:searchforward* *searchforward-variable* |
| 2520 | Search direction: 1 after a forward search, 0 after a |
| 2521 | backward search. It is reset to forward when directly setting |
| 2522 | the last search pattern, see |quote/|. |
| 2523 | Note that the value is restored when returning from a |
| 2524 | function. |function-search-undo|. |
| 2525 | Read-write. |
| 2526 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2527 | *v:shell_error* *shell_error-variable* |
| 2528 | v:shell_error Result of the last shell command. When non-zero, the last |
| 2529 | shell command had an error. When zero, there was no problem. |
| 2530 | This only works when the shell returns the error code to Vim. |
| 2531 | The value -1 is often used when the command could not be |
| 2532 | executed. Read-only. |
| 2533 | Example: > |
| 2534 | :!mv foo bar |
| 2535 | :if v:shell_error |
| 2536 | : echo 'could not rename "foo" to "bar"!' |
| 2537 | :endif |
Bram Moolenaar | d2e716e | 2019-04-20 14:39:52 +0200 | [diff] [blame] | 2538 | < "shell_error" also works, for backwards compatibility, unless |
| 2539 | |scriptversion| is 3 or higher. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2540 | |
Bram Moolenaar | 113cb51 | 2021-11-07 20:27:04 +0000 | [diff] [blame] | 2541 | *v:sizeofint* *sizeofint-variable* |
| 2542 | v:sizeofint Number of bytes in an int. Depends on how Vim was compiled. |
| 2543 | This is only useful for deciding whether a test will give the |
| 2544 | expected result. |
| 2545 | |
| 2546 | *v:sizeoflong* *sizeoflong-variable* |
| 2547 | v:sizeoflong Number of bytes in a long. Depends on how Vim was compiled. |
| 2548 | This is only useful for deciding whether a test will give the |
| 2549 | expected result. |
| 2550 | |
| 2551 | *v:sizeofpointer* *sizeofpointer-variable* |
| 2552 | v:sizeofpointer Number of bytes in a pointer. Depends on how Vim was compiled. |
| 2553 | This is only useful for deciding whether a test will give the |
| 2554 | expected result. |
| 2555 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2556 | *v:statusmsg* *statusmsg-variable* |
| 2557 | v:statusmsg Last given status message. It's allowed to set this variable. |
| 2558 | |
Bram Moolenaar | 4e330bb | 2005-12-07 21:04:31 +0000 | [diff] [blame] | 2559 | *v:swapname* *swapname-variable* |
| 2560 | v:swapname Only valid when executing |SwapExists| autocommands: Name of |
| 2561 | the swap file found. Read-only. |
| 2562 | |
| 2563 | *v:swapchoice* *swapchoice-variable* |
| 2564 | v:swapchoice |SwapExists| autocommands can set this to the selected choice |
| 2565 | for handling an existing swap file: |
| 2566 | 'o' Open read-only |
| 2567 | 'e' Edit anyway |
| 2568 | 'r' Recover |
| 2569 | 'd' Delete swapfile |
| 2570 | 'q' Quit |
| 2571 | 'a' Abort |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 2572 | The value should be a single-character string. An empty value |
Bram Moolenaar | 4e330bb | 2005-12-07 21:04:31 +0000 | [diff] [blame] | 2573 | results in the user being asked, as would happen when there is |
| 2574 | no SwapExists autocommand. The default is empty. |
| 2575 | |
Bram Moolenaar | b348038 | 2005-12-11 21:33:32 +0000 | [diff] [blame] | 2576 | *v:swapcommand* *swapcommand-variable* |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 2577 | v:swapcommand Normal mode command to be executed after a file has been |
Bram Moolenaar | b348038 | 2005-12-11 21:33:32 +0000 | [diff] [blame] | 2578 | opened. Can be used for a |SwapExists| autocommand to have |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 2579 | another Vim open the file and jump to the right place. For |
Bram Moolenaar | b348038 | 2005-12-11 21:33:32 +0000 | [diff] [blame] | 2580 | example, when jumping to a tag the value is ":tag tagname\r". |
Bram Moolenaar | 1f35bf9 | 2006-03-07 22:38:47 +0000 | [diff] [blame] | 2581 | For ":edit +cmd file" the value is ":cmd\r". |
Bram Moolenaar | b348038 | 2005-12-11 21:33:32 +0000 | [diff] [blame] | 2582 | |
Bram Moolenaar | d823fa9 | 2016-08-12 16:29:27 +0200 | [diff] [blame] | 2583 | *v:t_TYPE* *v:t_bool* *t_bool-variable* |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 2584 | v:t_bool Value of |Boolean| type. Read-only. See: |type()| |
Bram Moolenaar | d823fa9 | 2016-08-12 16:29:27 +0200 | [diff] [blame] | 2585 | *v:t_channel* *t_channel-variable* |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 2586 | v:t_channel Value of |Channel| type. Read-only. See: |type()| |
Bram Moolenaar | d823fa9 | 2016-08-12 16:29:27 +0200 | [diff] [blame] | 2587 | *v:t_dict* *t_dict-variable* |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 2588 | v:t_dict Value of |Dictionary| type. Read-only. See: |type()| |
Bram Moolenaar | d823fa9 | 2016-08-12 16:29:27 +0200 | [diff] [blame] | 2589 | *v:t_float* *t_float-variable* |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 2590 | v:t_float Value of |Float| type. Read-only. See: |type()| |
Bram Moolenaar | d823fa9 | 2016-08-12 16:29:27 +0200 | [diff] [blame] | 2591 | *v:t_func* *t_func-variable* |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 2592 | v:t_func Value of |Funcref| type. Read-only. See: |type()| |
Bram Moolenaar | d823fa9 | 2016-08-12 16:29:27 +0200 | [diff] [blame] | 2593 | *v:t_job* *t_job-variable* |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 2594 | v:t_job Value of |Job| type. Read-only. See: |type()| |
Bram Moolenaar | d823fa9 | 2016-08-12 16:29:27 +0200 | [diff] [blame] | 2595 | *v:t_list* *t_list-variable* |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 2596 | v:t_list Value of |List| type. Read-only. See: |type()| |
Bram Moolenaar | d823fa9 | 2016-08-12 16:29:27 +0200 | [diff] [blame] | 2597 | *v:t_none* *t_none-variable* |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 2598 | v:t_none Value of |None| type. Read-only. See: |type()| |
Bram Moolenaar | d823fa9 | 2016-08-12 16:29:27 +0200 | [diff] [blame] | 2599 | *v:t_number* *t_number-variable* |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 2600 | v:t_number Value of |Number| type. Read-only. See: |type()| |
Bram Moolenaar | d823fa9 | 2016-08-12 16:29:27 +0200 | [diff] [blame] | 2601 | *v:t_string* *t_string-variable* |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 2602 | v:t_string Value of |String| type. Read-only. See: |type()| |
Bram Moolenaar | 6e5ea8d | 2019-01-12 22:47:31 +0100 | [diff] [blame] | 2603 | *v:t_blob* *t_blob-variable* |
Bram Moolenaar | d09091d | 2019-01-17 16:07:22 +0100 | [diff] [blame] | 2604 | v:t_blob Value of |Blob| type. Read-only. See: |type()| |
Bram Moolenaar | c0c2c26 | 2023-01-12 21:08:53 +0000 | [diff] [blame] | 2605 | *v:t_class* *t_class-variable* |
| 2606 | v:t_class Value of |class| type. Read-only. See: |type()| |
| 2607 | *v:t_object* *t_object-variable* |
| 2608 | v:t_object Value of |object| type. Read-only. See: |type()| |
Yegappan Lakshmanan | 2a71b54 | 2023-12-14 20:03:03 +0100 | [diff] [blame] | 2609 | *v:t_typealias* *t_typealias-variable* |
| 2610 | v:t_typealias Value of |typealias| type. Read-only. See: |type()| |
Yegappan Lakshmanan | 3164cf8 | 2024-03-28 10:36:42 +0100 | [diff] [blame] | 2611 | *v:t_enum* *t_enum-variable* |
| 2612 | v:t_enum Value of |enum| type. Read-only. See: |type()| |
| 2613 | *v:t_enumvalue* *t_enumvalue-variable* |
| 2614 | v:t_enumvalue Value of |enumvalue| type. Read-only. See: |type()| |
Bram Moolenaar | f562e72 | 2016-07-19 17:25:25 +0200 | [diff] [blame] | 2615 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2616 | *v:termresponse* *termresponse-variable* |
| 2617 | v:termresponse The escape sequence returned by the terminal for the |t_RV| |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 2618 | termcap entry. It is set when Vim receives an escape sequence |
Bram Moolenaar | b423012 | 2019-05-30 18:40:53 +0200 | [diff] [blame] | 2619 | that starts with ESC [ or CSI, then '>' or '?' and ends in a |
| 2620 | 'c', with only digits and ';' in between. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2621 | When this option is set, the TermResponse autocommand event is |
| 2622 | fired, so that you can react to the response from the |
Danek Duvall | d7d5603 | 2024-01-14 20:19:59 +0100 | [diff] [blame] | 2623 | terminal. The TermResponseAll event is also fired, with |
| 2624 | <amatch> set to "version". You can use |terminalprops()| to see |
| 2625 | what Vim figured out about the terminal. |
Bram Moolenaar | b423012 | 2019-05-30 18:40:53 +0200 | [diff] [blame] | 2626 | The response from a new xterm is: "<Esc>[> Pp ; Pv ; Pc c". Pp |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2627 | is the terminal type: 0 for vt100 and 1 for vt220. Pv is the |
| 2628 | patch level (since this was introduced in patch 95, it's |
Bram Moolenaar | fa3b723 | 2021-12-24 13:18:38 +0000 | [diff] [blame] | 2629 | always 95 or higher). Pc is always zero. |
| 2630 | If Pv is 141 or higher then Vim will try to request terminal |
| 2631 | codes. This only works with xterm |xterm-codes|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2632 | {only when compiled with |+termresponse| feature} |
| 2633 | |
Bram Moolenaar | f3af54e | 2017-08-30 14:53:06 +0200 | [diff] [blame] | 2634 | *v:termblinkresp* |
| 2635 | v:termblinkresp The escape sequence returned by the terminal for the |t_RC| |
| 2636 | termcap entry. This is used to find out whether the terminal |
Danek Duvall | d7d5603 | 2024-01-14 20:19:59 +0100 | [diff] [blame] | 2637 | cursor is blinking. This is used by |term_getcursor()|. When |
| 2638 | this option is set, the TermResponseAll autocommand event is |
| 2639 | fired, with <amatch> set to "cursorblink". |
Bram Moolenaar | f3af54e | 2017-08-30 14:53:06 +0200 | [diff] [blame] | 2640 | |
| 2641 | *v:termstyleresp* |
| 2642 | v:termstyleresp The escape sequence returned by the terminal for the |t_RS| |
| 2643 | termcap entry. This is used to find out what the shape of the |
Danek Duvall | d7d5603 | 2024-01-14 20:19:59 +0100 | [diff] [blame] | 2644 | cursor is. This is used by |term_getcursor()|. When this |
| 2645 | option is set, the TermResponseAll autocommand event is fired, |
| 2646 | with <amatch> set to "cursorshape". |
Bram Moolenaar | f3af54e | 2017-08-30 14:53:06 +0200 | [diff] [blame] | 2647 | |
Bram Moolenaar | 65e4c4f | 2017-10-14 23:24:25 +0200 | [diff] [blame] | 2648 | *v:termrbgresp* |
| 2649 | v:termrbgresp The escape sequence returned by the terminal for the |t_RB| |
Bram Moolenaar | f3af54e | 2017-08-30 14:53:06 +0200 | [diff] [blame] | 2650 | termcap entry. This is used to find out what the terminal |
Danek Duvall | d7d5603 | 2024-01-14 20:19:59 +0100 | [diff] [blame] | 2651 | background color is; see 'background'. When this option is |
| 2652 | set, the TermResponseAll autocommand event is fired, with |
| 2653 | <amatch> set to "background". |
Bram Moolenaar | f3af54e | 2017-08-30 14:53:06 +0200 | [diff] [blame] | 2654 | |
Bram Moolenaar | 65e4c4f | 2017-10-14 23:24:25 +0200 | [diff] [blame] | 2655 | *v:termrfgresp* |
| 2656 | v:termrfgresp The escape sequence returned by the terminal for the |t_RF| |
| 2657 | termcap entry. This is used to find out what the terminal |
Danek Duvall | d7d5603 | 2024-01-14 20:19:59 +0100 | [diff] [blame] | 2658 | foreground color is. When this option is set, the |
| 2659 | TermResponseAll autocommand event is fired, with <amatch> set |
| 2660 | to "foreground". |
Bram Moolenaar | 65e4c4f | 2017-10-14 23:24:25 +0200 | [diff] [blame] | 2661 | |
Bram Moolenaar | f3af54e | 2017-08-30 14:53:06 +0200 | [diff] [blame] | 2662 | *v:termu7resp* |
| 2663 | v:termu7resp The escape sequence returned by the terminal for the |t_u7| |
| 2664 | termcap entry. This is used to find out what the terminal |
Danek Duvall | d7d5603 | 2024-01-14 20:19:59 +0100 | [diff] [blame] | 2665 | does with ambiguous width characters, see 'ambiwidth'. When |
| 2666 | this option is set, the TermResponseAll autocommand event is |
| 2667 | fired, with <amatch> set to "ambiguouswidth". |
Bram Moolenaar | f3af54e | 2017-08-30 14:53:06 +0200 | [diff] [blame] | 2668 | |
Bram Moolenaar | ebf7dfa | 2016-04-14 12:46:51 +0200 | [diff] [blame] | 2669 | *v:testing* *testing-variable* |
Bram Moolenaar | 8e8df25 | 2016-05-25 21:23:21 +0200 | [diff] [blame] | 2670 | v:testing Must be set before using `test_garbagecollect_now()`. |
Bram Moolenaar | 036986f | 2017-03-16 17:41:02 +0100 | [diff] [blame] | 2671 | Also, when set certain error messages won't be shown for 2 |
Bram Moolenaar | b0d45e7 | 2017-11-05 18:19:24 +0100 | [diff] [blame] | 2672 | seconds. (e.g. "'dictionary' option is empty") |
Bram Moolenaar | ebf7dfa | 2016-04-14 12:46:51 +0200 | [diff] [blame] | 2673 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2674 | *v:this_session* *this_session-variable* |
| 2675 | v:this_session Full filename of the last loaded or saved session file. See |
| 2676 | |:mksession|. It is allowed to set this variable. When no |
| 2677 | session file has been saved, this variable is empty. |
Bram Moolenaar | d2e716e | 2019-04-20 14:39:52 +0200 | [diff] [blame] | 2678 | "this_session" also works, for backwards compatibility, unless |
| 2679 | |scriptversion| is 3 or higher |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2680 | |
| 2681 | *v:throwpoint* *throwpoint-variable* |
| 2682 | v:throwpoint The point where the exception most recently caught and not |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 2683 | finished was thrown. Not set when commands are typed. See |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2684 | also |v:exception| and |throw-variables|. |
| 2685 | Example: > |
| 2686 | :try |
| 2687 | : throw "oops" |
| 2688 | :catch /.*/ |
| 2689 | : echo "Exception from" v:throwpoint |
| 2690 | :endtry |
| 2691 | < Output: "Exception from test.vim, line 2" |
| 2692 | |
Bram Moolenaar | 520e1e4 | 2016-01-23 19:46:28 +0100 | [diff] [blame] | 2693 | *v:true* *true-variable* |
| 2694 | v:true A Number with value one. Used to put "true" in JSON. See |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 2695 | |json_encode()|. |
Bram Moolenaar | c95a302 | 2016-06-12 23:01:46 +0200 | [diff] [blame] | 2696 | When used as a string this evaluates to "v:true". > |
Bram Moolenaar | 705ada1 | 2016-01-24 17:56:50 +0100 | [diff] [blame] | 2697 | echo v:true |
Bram Moolenaar | c95a302 | 2016-06-12 23:01:46 +0200 | [diff] [blame] | 2698 | < v:true ~ |
| 2699 | That is so that eval() can parse the string back to the same |
Bram Moolenaar | df48fb4 | 2016-07-22 21:50:18 +0200 | [diff] [blame] | 2700 | value. Read-only. |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 2701 | In |Vim9| script "true" can be used which has a boolean type. |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 2702 | *v:val* *val-variable* |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 2703 | v:val Value of the current item of a |List| or |Dictionary|. Only |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2704 | valid while evaluating the expression used with |map()| and |
Bram Moolenaar | 2fda12f | 2005-01-15 22:14:15 +0000 | [diff] [blame] | 2705 | |filter()|. Read-only. |
| 2706 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2707 | *v:version* *version-variable* |
| 2708 | v:version Version number of Vim: Major version number times 100 plus |
Bram Moolenaar | 9b28352 | 2019-06-17 22:19:33 +0200 | [diff] [blame] | 2709 | minor version number. Version 5.0 is 500. Version 5.1 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2710 | is 501. Read-only. "version" also works, for backwards |
Bram Moolenaar | d2e716e | 2019-04-20 14:39:52 +0200 | [diff] [blame] | 2711 | compatibility, unless |scriptversion| is 3 or higher. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2712 | Use |has()| to check if a certain patch was included, e.g.: > |
Bram Moolenaar | 6716d9a | 2014-04-02 12:12:08 +0200 | [diff] [blame] | 2713 | if has("patch-7.4.123") |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2714 | < Note that patch numbers are specific to the version, thus both |
| 2715 | version 5.0 and 5.1 may have a patch 123, but these are |
| 2716 | completely different. |
| 2717 | |
Bram Moolenaar | 37df9a4 | 2019-06-14 14:39:51 +0200 | [diff] [blame] | 2718 | *v:versionlong* *versionlong-variable* |
Bram Moolenaar | 9b28352 | 2019-06-17 22:19:33 +0200 | [diff] [blame] | 2719 | v:versionlong Like v:version, but also including the patchlevel in the last |
| 2720 | four digits. Version 8.1 with patch 123 has value 8010123. |
| 2721 | This can be used like this: > |
| 2722 | if v:versionlong >= 8010123 |
Bram Moolenaar | 37df9a4 | 2019-06-14 14:39:51 +0200 | [diff] [blame] | 2723 | < However, if there are gaps in the list of patches included |
| 2724 | this will not work well. This can happen if a recent patch |
| 2725 | was included into an older version, e.g. for a security fix. |
| 2726 | Use the has() function to make sure the patch is actually |
| 2727 | included. |
| 2728 | |
Bram Moolenaar | 1473551 | 2016-03-26 21:00:08 +0100 | [diff] [blame] | 2729 | *v:vim_did_enter* *vim_did_enter-variable* |
| 2730 | v:vim_did_enter Zero until most of startup is done. It is set to one just |
| 2731 | before |VimEnter| autocommands are triggered. |
| 2732 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2733 | *v:warningmsg* *warningmsg-variable* |
| 2734 | v:warningmsg Last given warning message. It's allowed to set this variable. |
| 2735 | |
Bram Moolenaar | 727c876 | 2010-10-20 19:17:48 +0200 | [diff] [blame] | 2736 | *v:windowid* *windowid-variable* |
Christian Brabandt | e5bc2e4 | 2024-06-01 20:55:09 +0200 | [diff] [blame] | 2737 | v:windowid When any X11/Wayland based GUI is running or when running in a |
Bram Moolenaar | 727c876 | 2010-10-20 19:17:48 +0200 | [diff] [blame] | 2738 | terminal and Vim connects to the X server (|-X|) this will be |
Bram Moolenaar | 264e9fd | 2010-10-27 12:33:17 +0200 | [diff] [blame] | 2739 | set to the window ID. |
| 2740 | When an MS-Windows GUI is running this will be set to the |
| 2741 | window handle. |
| 2742 | Otherwise the value is zero. |
Bram Moolenaar | 7571d55 | 2016-08-18 22:54:46 +0200 | [diff] [blame] | 2743 | Note: for windows inside Vim use |winnr()| or |win_getid()|, |
| 2744 | see |window-ID|. |
Bram Moolenaar | 727c876 | 2010-10-20 19:17:48 +0200 | [diff] [blame] | 2745 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2746 | ============================================================================== |
| 2747 | 4. Builtin Functions *functions* |
| 2748 | |
| 2749 | See |function-list| for a list grouped by what the function is used for. |
| 2750 | |
Bram Moolenaar | 1cae5a0 | 2021-12-27 21:28:34 +0000 | [diff] [blame] | 2751 | The alphabetic list of all builtin functions and details are in a separate |
| 2752 | help file: |builtin-functions|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2753 | |
| 2754 | ============================================================================== |
| 2755 | 5. Defining functions *user-functions* |
| 2756 | |
| 2757 | New functions can be defined. These can be called just like builtin |
Bram Moolenaar | 0daafaa | 2022-09-04 17:45:43 +0100 | [diff] [blame] | 2758 | functions. The function takes arguments, executes a sequence of Ex commands |
| 2759 | and can return a value. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2760 | |
Bram Moolenaar | 0daafaa | 2022-09-04 17:45:43 +0100 | [diff] [blame] | 2761 | You can find most information about defining functions in |userfunc.txt|. |
| 2762 | For Vim9 functions, which execute much faster, support type checking and more, |
| 2763 | see |vim9.txt|. |
Bram Moolenaar | 433f7c8 | 2006-03-21 21:29:36 +0000 | [diff] [blame] | 2764 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2765 | ============================================================================== |
| 2766 | 6. Curly braces names *curly-braces-names* |
| 2767 | |
Bram Moolenaar | 84f7235 | 2012-03-11 15:57:40 +0100 | [diff] [blame] | 2768 | In most places where you can use a variable, you can use a "curly braces name" |
| 2769 | variable. This is a regular variable name with one or more expressions |
| 2770 | wrapped in braces {} like this: > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2771 | my_{adjective}_variable |
| 2772 | |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 2773 | This only works in legacy Vim script, not in |Vim9| script. |
| 2774 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2775 | When Vim encounters this, it evaluates the expression inside the braces, puts |
| 2776 | that in place of the expression, and re-interprets the whole as a variable |
| 2777 | name. So in the above example, if the variable "adjective" was set to |
| 2778 | "noisy", then the reference would be to "my_noisy_variable", whereas if |
| 2779 | "adjective" was set to "quiet", then it would be to "my_quiet_variable". |
| 2780 | |
| 2781 | One application for this is to create a set of variables governed by an option |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 2782 | value. For example, the statement > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2783 | echo my_{&background}_message |
| 2784 | |
| 2785 | would output the contents of "my_dark_message" or "my_light_message" depending |
| 2786 | on the current value of 'background'. |
| 2787 | |
| 2788 | You can use multiple brace pairs: > |
| 2789 | echo my_{adverb}_{adjective}_message |
| 2790 | ..or even nest them: > |
| 2791 | echo my_{ad{end_of_word}}_message |
| 2792 | where "end_of_word" is either "verb" or "jective". |
| 2793 | |
| 2794 | However, the expression inside the braces must evaluate to a valid single |
Bram Moolenaar | 402d2fe | 2005-04-15 21:00:38 +0000 | [diff] [blame] | 2795 | variable name, e.g. this is invalid: > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2796 | :let foo='a + b' |
| 2797 | :echo c{foo}d |
| 2798 | .. since the result of expansion is "ca + bd", which is not a variable name. |
| 2799 | |
| 2800 | *curly-braces-function-names* |
| 2801 | You can call and define functions by an evaluated name in a similar way. |
| 2802 | Example: > |
| 2803 | :let func_end='whizz' |
| 2804 | :call my_func_{func_end}(parameter) |
| 2805 | |
| 2806 | This would call the function "my_func_whizz(parameter)". |
| 2807 | |
Bram Moolenaar | 84f7235 | 2012-03-11 15:57:40 +0100 | [diff] [blame] | 2808 | This does NOT work: > |
| 2809 | :let i = 3 |
| 2810 | :let @{i} = '' " error |
| 2811 | :echo @{i} " error |
| 2812 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2813 | ============================================================================== |
| 2814 | 7. Commands *expression-commands* |
| 2815 | |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 2816 | Note: in |Vim9| script `:let` is not used. `:var` is used for variable |
| 2817 | declarations and assignments do not use a command. |vim9-declaration| |
Bram Moolenaar | 65e0d77 | 2020-06-14 17:29:55 +0200 | [diff] [blame] | 2818 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2819 | :let {var-name} = {expr1} *:let* *E18* |
| 2820 | Set internal variable {var-name} to the result of the |
| 2821 | expression {expr1}. The variable will get the type |
| 2822 | from the {expr}. If {var-name} didn't exist yet, it |
| 2823 | is created. |
| 2824 | |
Bram Moolenaar | f10911e | 2022-01-29 22:20:48 +0000 | [diff] [blame] | 2825 | :let {var-name}[{idx}] = {expr1} *E689* *E1141* |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 2826 | Set a list item to the result of the expression |
| 2827 | {expr1}. {var-name} must refer to a list and {idx} |
| 2828 | must be a valid index in that list. For nested list |
| 2829 | the index can be repeated. |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 2830 | This cannot be used to add an item to a |List|. |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 2831 | This cannot be used to set a byte in a String. You |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 2832 | can do that like this: > |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 2833 | :let var = var[0:2] .. 'X' .. var[4:] |
Bram Moolenaar | 6e5ea8d | 2019-01-12 22:47:31 +0100 | [diff] [blame] | 2834 | < When {var-name} is a |Blob| then {idx} can be the |
| 2835 | length of the blob, in which case one byte is |
| 2836 | appended. |
| 2837 | |
Bram Moolenaar | a2baa73 | 2022-02-04 16:09:54 +0000 | [diff] [blame] | 2838 | *E711* *E719* *E1165* *E1166* *E1183* |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 2839 | :let {var-name}[{idx1}:{idx2}] = {expr1} *E708* *E709* *E710* |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2840 | Set a sequence of items in a |List| to the result of |
| 2841 | the expression {expr1}, which must be a list with the |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 2842 | correct number of items. |
| 2843 | {idx1} can be omitted, zero is used instead. |
| 2844 | {idx2} can be omitted, meaning the end of the list. |
| 2845 | When the selected range of items is partly past the |
| 2846 | end of the list, items will be added. |
| 2847 | |
Bram Moolenaar | 6f4754b | 2022-01-23 12:07:04 +0000 | [diff] [blame] | 2848 | *:let+=* *:let-=* *:letstar=* *:let/=* *:let%=* |
| 2849 | *:let.=* *:let..=* *E734* *E985* *E1019* |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 2850 | :let {var} += {expr1} Like ":let {var} = {var} + {expr1}". |
| 2851 | :let {var} -= {expr1} Like ":let {var} = {var} - {expr1}". |
Bram Moolenaar | ff697e6 | 2019-02-12 22:28:33 +0100 | [diff] [blame] | 2852 | :let {var} *= {expr1} Like ":let {var} = {var} * {expr1}". |
| 2853 | :let {var} /= {expr1} Like ":let {var} = {var} / {expr1}". |
| 2854 | :let {var} %= {expr1} Like ":let {var} = {var} % {expr1}". |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 2855 | :let {var} .= {expr1} Like ":let {var} = {var} . {expr1}". |
Bram Moolenaar | 558ca4a | 2019-04-04 18:15:38 +0200 | [diff] [blame] | 2856 | :let {var} ..= {expr1} Like ":let {var} = {var} .. {expr1}". |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 2857 | These fail if {var} was not set yet and when the type |
| 2858 | of {var} and {expr1} don't fit the operator. |
zeertzjq | b817014 | 2024-02-08 11:21:44 +0100 | [diff] [blame] | 2859 | `+=` modifies a |List| or a |Blob| in-place instead of |
| 2860 | creating a new one. |
Bram Moolenaar | 558ca4a | 2019-04-04 18:15:38 +0200 | [diff] [blame] | 2861 | `.=` is not supported with Vim script version 2 and |
| 2862 | later, see |vimscript-version|. |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 2863 | |
| 2864 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2865 | :let ${env-name} = {expr1} *:let-environment* *:let-$* |
| 2866 | Set environment variable {env-name} to the result of |
| 2867 | the expression {expr1}. The type is always String. |
Bram Moolenaar | 56c860c | 2019-08-17 20:09:31 +0200 | [diff] [blame] | 2868 | |
| 2869 | On some systems making an environment variable empty |
| 2870 | causes it to be deleted. Many systems do not make a |
| 2871 | difference between an environment variable that is not |
| 2872 | set and an environment variable that is empty. |
| 2873 | |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 2874 | :let ${env-name} .= {expr1} |
| 2875 | Append {expr1} to the environment variable {env-name}. |
| 2876 | If the environment variable didn't exist yet this |
| 2877 | works like "=". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2878 | |
| 2879 | :let @{reg-name} = {expr1} *:let-register* *:let-@* |
| 2880 | Write the result of the expression {expr1} in register |
| 2881 | {reg-name}. {reg-name} must be a single letter, and |
| 2882 | must be the name of a writable register (see |
| 2883 | |registers|). "@@" can be used for the unnamed |
| 2884 | register, "@/" for the search pattern. |
| 2885 | If the result of {expr1} ends in a <CR> or <NL>, the |
| 2886 | register will be linewise, otherwise it will be set to |
| 2887 | characterwise. |
| 2888 | This can be used to clear the last search pattern: > |
| 2889 | :let @/ = "" |
| 2890 | < This is different from searching for an empty string, |
| 2891 | that would match everywhere. |
| 2892 | |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 2893 | :let @{reg-name} .= {expr1} |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 2894 | Append {expr1} to register {reg-name}. If the |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 2895 | register was empty it's like setting it to {expr1}. |
| 2896 | |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 2897 | :let &{option-name} = {expr1} *:let-option* *:let-&* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2898 | Set option {option-name} to the result of the |
Bram Moolenaar | fca34d6 | 2005-01-04 21:38:36 +0000 | [diff] [blame] | 2899 | expression {expr1}. A String or Number value is |
| 2900 | always converted to the type of the option. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2901 | For an option local to a window or buffer the effect |
| 2902 | is just like using the |:set| command: both the local |
Bram Moolenaar | a5fac54 | 2005-10-12 20:58:49 +0000 | [diff] [blame] | 2903 | value and the global value are changed. |
Bram Moolenaar | fca34d6 | 2005-01-04 21:38:36 +0000 | [diff] [blame] | 2904 | Example: > |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 2905 | :let &path = &path .. ',/usr/local/include' |
Bram Moolenaar | 3df0173 | 2017-02-17 22:47:16 +0100 | [diff] [blame] | 2906 | < This also works for terminal codes in the form t_xx. |
| 2907 | But only for alphanumerical names. Example: > |
| 2908 | :let &t_k1 = "\<Esc>[234;" |
| 2909 | < When the code does not exist yet it will be created as |
| 2910 | a terminal key code, there is no error. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2911 | |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 2912 | :let &{option-name} .= {expr1} |
| 2913 | For a string option: Append {expr1} to the value. |
| 2914 | Does not insert a comma like |:set+=|. |
| 2915 | |
| 2916 | :let &{option-name} += {expr1} |
| 2917 | :let &{option-name} -= {expr1} |
| 2918 | For a number or boolean option: Add or subtract |
| 2919 | {expr1}. |
| 2920 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2921 | :let &l:{option-name} = {expr1} |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 2922 | :let &l:{option-name} .= {expr1} |
| 2923 | :let &l:{option-name} += {expr1} |
| 2924 | :let &l:{option-name} -= {expr1} |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2925 | Like above, but only set the local value of an option |
| 2926 | (if there is one). Works like |:setlocal|. |
| 2927 | |
| 2928 | :let &g:{option-name} = {expr1} |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 2929 | :let &g:{option-name} .= {expr1} |
| 2930 | :let &g:{option-name} += {expr1} |
| 2931 | :let &g:{option-name} -= {expr1} |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2932 | Like above, but only set the global value of an option |
| 2933 | (if there is one). Works like |:setglobal|. |
Bram Moolenaar | f10911e | 2022-01-29 22:20:48 +0000 | [diff] [blame] | 2934 | *E1093* |
Bram Moolenaar | 13065c4 | 2005-01-08 16:08:21 +0000 | [diff] [blame] | 2935 | :let [{name1}, {name2}, ...] = {expr1} *:let-unpack* *E687* *E688* |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2936 | {expr1} must evaluate to a |List|. The first item in |
Bram Moolenaar | fca34d6 | 2005-01-04 21:38:36 +0000 | [diff] [blame] | 2937 | the list is assigned to {name1}, the second item to |
| 2938 | {name2}, etc. |
| 2939 | The number of names must match the number of items in |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2940 | the |List|. |
Bram Moolenaar | fca34d6 | 2005-01-04 21:38:36 +0000 | [diff] [blame] | 2941 | Each name can be one of the items of the ":let" |
| 2942 | command as mentioned above. |
| 2943 | Example: > |
| 2944 | :let [s, item] = GetItem(s) |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 2945 | < Detail: {expr1} is evaluated first, then the |
| 2946 | assignments are done in sequence. This matters if |
| 2947 | {name2} depends on {name1}. Example: > |
| 2948 | :let x = [0, 1] |
| 2949 | :let i = 0 |
| 2950 | :let [i, x[i]] = [1, 2] |
| 2951 | :echo x |
| 2952 | < The result is [0, 2]. |
| 2953 | |
| 2954 | :let [{name1}, {name2}, ...] .= {expr1} |
| 2955 | :let [{name1}, {name2}, ...] += {expr1} |
| 2956 | :let [{name1}, {name2}, ...] -= {expr1} |
| 2957 | Like above, but append/add/subtract the value for each |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2958 | |List| item. |
Bram Moolenaar | fca34d6 | 2005-01-04 21:38:36 +0000 | [diff] [blame] | 2959 | |
Bram Moolenaar | d1caa94 | 2020-04-10 22:10:56 +0200 | [diff] [blame] | 2960 | :let [{name}, ..., ; {lastname}] = {expr1} *E452* |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2961 | Like |:let-unpack| above, but the |List| may have more |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 2962 | items than there are names. A list of the remaining |
| 2963 | items is assigned to {lastname}. If there are no |
| 2964 | remaining items {lastname} is set to an empty list. |
Bram Moolenaar | fca34d6 | 2005-01-04 21:38:36 +0000 | [diff] [blame] | 2965 | Example: > |
| 2966 | :let [a, b; rest] = ["aval", "bval", 3, 4] |
| 2967 | < |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 2968 | :let [{name}, ..., ; {lastname}] .= {expr1} |
| 2969 | :let [{name}, ..., ; {lastname}] += {expr1} |
| 2970 | :let [{name}, ..., ; {lastname}] -= {expr1} |
| 2971 | Like above, but append/add/subtract the value for each |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 2972 | |List| item. |
Bram Moolenaar | 4a74803 | 2010-09-30 21:47:56 +0200 | [diff] [blame] | 2973 | |
Bram Moolenaar | 2458200 | 2019-07-21 14:14:26 +0200 | [diff] [blame] | 2974 | *:let=<<* *:let-heredoc* |
Bram Moolenaar | f10911e | 2022-01-29 22:20:48 +0000 | [diff] [blame] | 2975 | *E990* *E991* *E172* *E221* *E1145* |
Yegappan Lakshmanan | efbfa86 | 2022-04-17 12:47:40 +0100 | [diff] [blame] | 2976 | :let {var-name} =<< [trim] [eval] {endmarker} |
Bram Moolenaar | f5842c5 | 2019-05-19 18:41:26 +0200 | [diff] [blame] | 2977 | text... |
| 2978 | text... |
Bram Moolenaar | 2e693a8 | 2019-10-16 22:35:02 +0200 | [diff] [blame] | 2979 | {endmarker} |
Bram Moolenaar | e46a440 | 2020-06-30 20:38:27 +0200 | [diff] [blame] | 2980 | Set internal variable {var-name} to a |List| |
| 2981 | containing the lines of text bounded by the string |
Yegappan Lakshmanan | efbfa86 | 2022-04-17 12:47:40 +0100 | [diff] [blame] | 2982 | {endmarker}. |
| 2983 | |
| 2984 | If "eval" is not specified, then each line of text is |
Bram Moolenaar | d899e51 | 2022-05-07 21:54:03 +0100 | [diff] [blame] | 2985 | used as a |literal-string|, except that single quotes |
Bram Moolenaar | 8a3b805 | 2022-06-26 12:21:15 +0100 | [diff] [blame] | 2986 | does not need to be doubled. |
Bram Moolenaar | d899e51 | 2022-05-07 21:54:03 +0100 | [diff] [blame] | 2987 | If "eval" is specified, then any Vim expression in the |
| 2988 | form {expr} is evaluated and the result replaces the |
Bram Moolenaar | b59ae59 | 2022-11-23 23:46:31 +0000 | [diff] [blame] | 2989 | expression, like with |interpolated-string|. |
Yegappan Lakshmanan | efbfa86 | 2022-04-17 12:47:40 +0100 | [diff] [blame] | 2990 | Example where $HOME is expanded: > |
| 2991 | let lines =<< trim eval END |
| 2992 | some text |
Bram Moolenaar | d899e51 | 2022-05-07 21:54:03 +0100 | [diff] [blame] | 2993 | See the file {$HOME}/.vimrc |
Yegappan Lakshmanan | efbfa86 | 2022-04-17 12:47:40 +0100 | [diff] [blame] | 2994 | more text |
| 2995 | END |
| 2996 | < There can be multiple Vim expressions in a single line |
| 2997 | but an expression cannot span multiple lines. If any |
| 2998 | expression evaluation fails, then the assignment fails. |
Yegappan Lakshmanan | efbfa86 | 2022-04-17 12:47:40 +0100 | [diff] [blame] | 2999 | |
Bram Moolenaar | 2e693a8 | 2019-10-16 22:35:02 +0200 | [diff] [blame] | 3000 | {endmarker} must not contain white space. |
| 3001 | {endmarker} cannot start with a lower case character. |
| 3002 | The last line should end only with the {endmarker} |
| 3003 | string without any other character. Watch out for |
| 3004 | white space after {endmarker}! |
Bram Moolenaar | f5842c5 | 2019-05-19 18:41:26 +0200 | [diff] [blame] | 3005 | |
Bram Moolenaar | e7eb927 | 2019-06-24 00:58:07 +0200 | [diff] [blame] | 3006 | Without "trim" any white space characters in the lines |
| 3007 | of text are preserved. If "trim" is specified before |
Bram Moolenaar | 2e693a8 | 2019-10-16 22:35:02 +0200 | [diff] [blame] | 3008 | {endmarker}, then indentation is stripped so you can |
| 3009 | do: > |
Bram Moolenaar | e7eb927 | 2019-06-24 00:58:07 +0200 | [diff] [blame] | 3010 | let text =<< trim END |
| 3011 | if ok |
| 3012 | echo 'done' |
| 3013 | endif |
| 3014 | END |
| 3015 | < Results in: ["if ok", " echo 'done'", "endif"] |
| 3016 | The marker must line up with "let" and the indentation |
| 3017 | of the first line is removed from all the text lines. |
| 3018 | Specifically: all the leading indentation exactly |
| 3019 | matching the leading indentation of the first |
| 3020 | non-empty text line is stripped from the input lines. |
| 3021 | All leading indentation exactly matching the leading |
| 3022 | indentation before `let` is stripped from the line |
Bram Moolenaar | 2e693a8 | 2019-10-16 22:35:02 +0200 | [diff] [blame] | 3023 | containing {endmarker}. Note that the difference |
| 3024 | between space and tab matters here. |
Bram Moolenaar | f5842c5 | 2019-05-19 18:41:26 +0200 | [diff] [blame] | 3025 | |
| 3026 | If {var-name} didn't exist yet, it is created. |
| 3027 | Cannot be followed by another command, but can be |
| 3028 | followed by a comment. |
| 3029 | |
Bram Moolenaar | 2e693a8 | 2019-10-16 22:35:02 +0200 | [diff] [blame] | 3030 | To avoid line continuation to be applied, consider |
| 3031 | adding 'C' to 'cpoptions': > |
| 3032 | set cpo+=C |
| 3033 | let var =<< END |
| 3034 | \ leading backslash |
| 3035 | END |
| 3036 | set cpo-=C |
| 3037 | < |
Bram Moolenaar | f5842c5 | 2019-05-19 18:41:26 +0200 | [diff] [blame] | 3038 | Examples: > |
| 3039 | let var1 =<< END |
Bram Moolenaar | 2e693a8 | 2019-10-16 22:35:02 +0200 | [diff] [blame] | 3040 | Sample text 1 |
| 3041 | Sample text 2 |
| 3042 | Sample text 3 |
| 3043 | END |
Bram Moolenaar | f5842c5 | 2019-05-19 18:41:26 +0200 | [diff] [blame] | 3044 | |
| 3045 | let data =<< trim DATA |
Bram Moolenaar | 2e693a8 | 2019-10-16 22:35:02 +0200 | [diff] [blame] | 3046 | 1 2 3 4 |
| 3047 | 5 6 7 8 |
Bram Moolenaar | f5842c5 | 2019-05-19 18:41:26 +0200 | [diff] [blame] | 3048 | DATA |
Yegappan Lakshmanan | efbfa86 | 2022-04-17 12:47:40 +0100 | [diff] [blame] | 3049 | |
| 3050 | let code =<< trim eval CODE |
Bram Moolenaar | d899e51 | 2022-05-07 21:54:03 +0100 | [diff] [blame] | 3051 | let v = {10 + 20} |
| 3052 | let h = "{$HOME}" |
| 3053 | let s = "{Str1()} abc {Str2()}" |
| 3054 | let n = {MyFunc(3, 4)} |
Yegappan Lakshmanan | efbfa86 | 2022-04-17 12:47:40 +0100 | [diff] [blame] | 3055 | CODE |
Bram Moolenaar | f5842c5 | 2019-05-19 18:41:26 +0200 | [diff] [blame] | 3056 | < |
Bram Moolenaar | 4a74803 | 2010-09-30 21:47:56 +0200 | [diff] [blame] | 3057 | *E121* |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 3058 | :let {var-name} .. List the value of variable {var-name}. Multiple |
Bram Moolenaar | dcaf10e | 2005-01-21 11:55:25 +0000 | [diff] [blame] | 3059 | variable names may be given. Special names recognized |
| 3060 | here: *E738* |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 3061 | g: global variables |
| 3062 | b: local buffer variables |
| 3063 | w: local window variables |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 3064 | t: local tab page variables |
Bram Moolenaar | ca003e1 | 2006-03-17 23:19:38 +0000 | [diff] [blame] | 3065 | s: script-local variables |
| 3066 | l: local function variables |
Bram Moolenaar | dcaf10e | 2005-01-21 11:55:25 +0000 | [diff] [blame] | 3067 | v: Vim variables. |
Bram Moolenaar | 65e0d77 | 2020-06-14 17:29:55 +0200 | [diff] [blame] | 3068 | This does not work in Vim9 script. |vim9-declaration| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3069 | |
Bram Moolenaar | d7ee7ce | 2005-01-03 21:02:03 +0000 | [diff] [blame] | 3070 | :let List the values of all variables. The type of the |
| 3071 | variable is indicated before the value: |
| 3072 | <nothing> String |
| 3073 | # Number |
Bram Moolenaar | c9b4b05 | 2006-04-30 18:54:39 +0000 | [diff] [blame] | 3074 | * Funcref |
Bram Moolenaar | 65e0d77 | 2020-06-14 17:29:55 +0200 | [diff] [blame] | 3075 | This does not work in Vim9 script. |vim9-declaration| |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3076 | |
Bram Moolenaar | 6f4754b | 2022-01-23 12:07:04 +0000 | [diff] [blame] | 3077 | :unl[et][!] {name} ... *:unlet* *:unl* *E108* *E795* *E1081* |
Bram Moolenaar | 2ce06f6 | 2005-01-31 19:19:04 +0000 | [diff] [blame] | 3078 | Remove the internal variable {name}. Several variable |
| 3079 | names can be given, they are all removed. The name |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3080 | may also be a |List| or |Dictionary| item. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3081 | With [!] no error message is given for non-existing |
| 3082 | variables. |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3083 | One or more items from a |List| can be removed: > |
Bram Moolenaar | 9cd1516 | 2005-01-16 22:02:49 +0000 | [diff] [blame] | 3084 | :unlet list[3] " remove fourth item |
| 3085 | :unlet list[3:] " remove fourth item to last |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3086 | < One item from a |Dictionary| can be removed at a time: > |
Bram Moolenaar | 9cd1516 | 2005-01-16 22:02:49 +0000 | [diff] [blame] | 3087 | :unlet dict['two'] |
| 3088 | :unlet dict.two |
Bram Moolenaar | c236c16 | 2008-07-13 17:41:49 +0000 | [diff] [blame] | 3089 | < This is especially useful to clean up used global |
| 3090 | variables and script-local variables (these are not |
| 3091 | deleted when the script ends). Function-local |
| 3092 | variables are automatically deleted when the function |
| 3093 | ends. |
Bram Moolenaar | 1b5f03e | 2023-01-09 20:12:45 +0000 | [diff] [blame] | 3094 | In |Vim9| script variables declared in a function or |
| 3095 | script cannot be removed. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3096 | |
Bram Moolenaar | 137374f | 2018-05-13 15:59:50 +0200 | [diff] [blame] | 3097 | :unl[et] ${env-name} ... *:unlet-environment* *:unlet-$* |
| 3098 | Remove environment variable {env-name}. |
| 3099 | Can mix {name} and ${env-name} in one :unlet command. |
| 3100 | No error message is given for a non-existing |
| 3101 | variable, also without !. |
| 3102 | If the system does not support deleting an environment |
Bram Moolenaar | 9937a05 | 2019-06-15 15:45:06 +0200 | [diff] [blame] | 3103 | variable, it is made empty. |
Bram Moolenaar | 137374f | 2018-05-13 15:59:50 +0200 | [diff] [blame] | 3104 | |
Bram Moolenaar | 6f4754b | 2022-01-23 12:07:04 +0000 | [diff] [blame] | 3105 | *:cons* *:const* *E1018* |
Bram Moolenaar | 9937a05 | 2019-06-15 15:45:06 +0200 | [diff] [blame] | 3106 | :cons[t] {var-name} = {expr1} |
| 3107 | :cons[t] [{name1}, {name2}, ...] = {expr1} |
Bram Moolenaar | 9937a05 | 2019-06-15 15:45:06 +0200 | [diff] [blame] | 3108 | :cons[t] [{name}, ..., ; {lastname}] = {expr1} |
h-east | 53753f6 | 2024-05-05 18:42:31 +0200 | [diff] [blame] | 3109 | :cons[t] {var-name} =<< [trim] [eval] {marker} |
Bram Moolenaar | 9937a05 | 2019-06-15 15:45:06 +0200 | [diff] [blame] | 3110 | text... |
| 3111 | text... |
| 3112 | {marker} |
| 3113 | Similar to |:let|, but additionally lock the variable |
| 3114 | after setting the value. This is the same as locking |
| 3115 | the variable with |:lockvar| just after |:let|, thus: > |
| 3116 | :const x = 1 |
| 3117 | < is equivalent to: > |
| 3118 | :let x = 1 |
Bram Moolenaar | 021bda5 | 2020-08-17 21:07:22 +0200 | [diff] [blame] | 3119 | :lockvar! x |
Bram Moolenaar | a187c43 | 2020-09-16 21:08:28 +0200 | [diff] [blame] | 3120 | < NOTE: in Vim9 script `:const` works differently, see |
| 3121 | |vim9-const| |
| 3122 | This is useful if you want to make sure the variable |
Bram Moolenaar | 021bda5 | 2020-08-17 21:07:22 +0200 | [diff] [blame] | 3123 | is not modified. If the value is a List or Dictionary |
| 3124 | literal then the items also cannot be changed: > |
| 3125 | const ll = [1, 2, 3] |
| 3126 | let ll[1] = 5 " Error! |
Bram Moolenaar | 6e64922 | 2021-10-04 21:32:54 +0100 | [diff] [blame] | 3127 | < Nested references are not locked: > |
Bram Moolenaar | 021bda5 | 2020-08-17 21:07:22 +0200 | [diff] [blame] | 3128 | let lvar = ['a'] |
| 3129 | const lconst = [0, lvar] |
| 3130 | let lconst[0] = 2 " Error! |
| 3131 | let lconst[1][0] = 'b' " OK |
| 3132 | < *E995* |
Shane Harper | c1b3984 | 2024-07-17 19:40:40 +0200 | [diff] [blame] | 3133 | It is an error to specify an existing variable with |
h-east | 52e7cc2 | 2024-07-28 17:03:29 +0200 | [diff] [blame] | 3134 | |:const|. > |
Bram Moolenaar | 9937a05 | 2019-06-15 15:45:06 +0200 | [diff] [blame] | 3135 | :let x = 1 |
Shane Harper | c1b3984 | 2024-07-17 19:40:40 +0200 | [diff] [blame] | 3136 | :const x = 1 " Error! |
Bram Moolenaar | 1c196e7 | 2019-06-16 15:41:58 +0200 | [diff] [blame] | 3137 | < *E996* |
| 3138 | Note that environment variables, option values and |
| 3139 | register values cannot be used here, since they cannot |
| 3140 | be locked. |
| 3141 | |
Bram Moolenaar | 85850f3 | 2019-07-19 22:05:51 +0200 | [diff] [blame] | 3142 | :cons[t] |
| 3143 | :cons[t] {var-name} |
| 3144 | If no argument is given or only {var-name} is given, |
| 3145 | the behavior is the same as |:let|. |
| 3146 | |
Bram Moolenaar | 2ce06f6 | 2005-01-31 19:19:04 +0000 | [diff] [blame] | 3147 | :lockv[ar][!] [depth] {name} ... *:lockvar* *:lockv* |
| 3148 | Lock the internal variable {name}. Locking means that |
| 3149 | it can no longer be changed (until it is unlocked). |
| 3150 | A locked variable can be deleted: > |
| 3151 | :lockvar v |
Bram Moolenaar | dad4473 | 2021-03-31 20:07:33 +0200 | [diff] [blame] | 3152 | :let v = 'asdf' " fails! |
| 3153 | :unlet v " works |
Bram Moolenaar | f10911e | 2022-01-29 22:20:48 +0000 | [diff] [blame] | 3154 | < *E741* *E940* *E1118* *E1119* *E1120* *E1121* *E1122* |
Bram Moolenaar | 2ce06f6 | 2005-01-31 19:19:04 +0000 | [diff] [blame] | 3155 | If you try to change a locked variable you get an |
Bram Moolenaar | e7877fe | 2017-02-20 22:35:33 +0100 | [diff] [blame] | 3156 | error message: "E741: Value is locked: {name}". |
| 3157 | If you try to lock or unlock a built-in variable you |
| 3158 | get an error message: "E940: Cannot lock or unlock |
| 3159 | variable {name}". |
Bram Moolenaar | 2ce06f6 | 2005-01-31 19:19:04 +0000 | [diff] [blame] | 3160 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3161 | [depth] is relevant when locking a |List| or |
| 3162 | |Dictionary|. It specifies how deep the locking goes: |
Bram Moolenaar | a187c43 | 2020-09-16 21:08:28 +0200 | [diff] [blame] | 3163 | 0 Lock the variable {name} but not its |
| 3164 | value. |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3165 | 1 Lock the |List| or |Dictionary| itself, |
Bram Moolenaar | 2ce06f6 | 2005-01-31 19:19:04 +0000 | [diff] [blame] | 3166 | cannot add or remove items, but can |
| 3167 | still change their values. |
| 3168 | 2 Also lock the values, cannot change |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3169 | the items. If an item is a |List| or |
| 3170 | |Dictionary|, cannot add or remove |
Bram Moolenaar | 2ce06f6 | 2005-01-31 19:19:04 +0000 | [diff] [blame] | 3171 | items, but can still change the |
| 3172 | values. |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3173 | 3 Like 2 but for the |List| / |
| 3174 | |Dictionary| in the |List| / |
| 3175 | |Dictionary|, one level deeper. |
| 3176 | The default [depth] is 2, thus when {name} is a |List| |
| 3177 | or |Dictionary| the values cannot be changed. |
Bram Moolenaar | a187c43 | 2020-09-16 21:08:28 +0200 | [diff] [blame] | 3178 | |
| 3179 | Example with [depth] 0: > |
| 3180 | let mylist = [1, 2, 3] |
| 3181 | lockvar 0 mylist |
Bram Moolenaar | 6e64922 | 2021-10-04 21:32:54 +0100 | [diff] [blame] | 3182 | let mylist[0] = 77 " OK |
Bram Moolenaar | 10e8ff9 | 2023-06-10 21:40:39 +0100 | [diff] [blame] | 3183 | call add(mylist, 4) " OK |
Bram Moolenaar | a187c43 | 2020-09-16 21:08:28 +0200 | [diff] [blame] | 3184 | let mylist = [7, 8, 9] " Error! |
| 3185 | < *E743* |
Bram Moolenaar | 2ce06f6 | 2005-01-31 19:19:04 +0000 | [diff] [blame] | 3186 | For unlimited depth use [!] and omit [depth]. |
| 3187 | However, there is a maximum depth of 100 to catch |
| 3188 | loops. |
| 3189 | |
Bram Moolenaar | 32466aa | 2006-02-24 23:53:04 +0000 | [diff] [blame] | 3190 | Note that when two variables refer to the same |List| |
| 3191 | and you lock one of them, the |List| will also be |
Bram Moolenaar | 910f66f | 2006-04-05 20:41:53 +0000 | [diff] [blame] | 3192 | locked when used through the other variable. |
| 3193 | Example: > |
Bram Moolenaar | 2ce06f6 | 2005-01-31 19:19:04 +0000 | [diff] [blame] | 3194 | :let l = [0, 1, 2, 3] |
| 3195 | :let cl = l |
| 3196 | :lockvar l |
| 3197 | :let cl[1] = 99 " won't work! |
| 3198 | < You may want to make a copy of a list to avoid this. |
| 3199 | See |deepcopy()|. |
| 3200 | |
Yegappan Lakshmanan | cd39b69 | 2023-10-02 12:50:45 -0700 | [diff] [blame] | 3201 | *E1391* *E1392* |
| 3202 | Locking and unlocking object and class variables is |
| 3203 | currently NOT supported. |
| 3204 | |
Bram Moolenaar | 2ce06f6 | 2005-01-31 19:19:04 +0000 | [diff] [blame] | 3205 | |
Bram Moolenaar | a2baa73 | 2022-02-04 16:09:54 +0000 | [diff] [blame] | 3206 | :unlo[ckvar][!] [depth] {name} ... *:unlockvar* *:unlo* *E1246* |
Bram Moolenaar | 2ce06f6 | 2005-01-31 19:19:04 +0000 | [diff] [blame] | 3207 | Unlock the internal variable {name}. Does the |
| 3208 | opposite of |:lockvar|. |
| 3209 | |
Bram Moolenaar | d13166e | 2022-11-18 21:49:57 +0000 | [diff] [blame] | 3210 | If {name} does not exist: |
| 3211 | - In |Vim9| script an error is given. |
| 3212 | - In legacy script this is silently ignored. |
| 3213 | |
Bram Moolenaar | 61da1bf | 2019-06-06 12:14:49 +0200 | [diff] [blame] | 3214 | :if {expr1} *:if* *:end* *:endif* *:en* *E171* *E579* *E580* |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3215 | :en[dif] Execute the commands until the next matching `:else` |
| 3216 | or `:endif` if {expr1} evaluates to non-zero. |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 3217 | Although the short forms work, it is recommended to |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3218 | always use `:endif` to avoid confusion and to make |
| 3219 | auto-indenting work properly. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3220 | |
| 3221 | From Vim version 4.5 until 5.0, every Ex command in |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3222 | between the `:if` and `:endif` is ignored. These two |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3223 | commands were just to allow for future expansions in a |
Bram Moolenaar | 85084ef | 2016-01-17 22:26:33 +0100 | [diff] [blame] | 3224 | backward compatible way. Nesting was allowed. Note |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3225 | that any `:else` or `:elseif` was ignored, the `else` |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3226 | part was not executed either. |
| 3227 | |
| 3228 | You can use this to remain compatible with older |
| 3229 | versions: > |
| 3230 | :if version >= 500 |
| 3231 | : version-5-specific-commands |
| 3232 | :endif |
| 3233 | < The commands still need to be parsed to find the |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3234 | `endif`. Sometimes an older Vim has a problem with a |
| 3235 | new command. For example, `:silent` is recognized as |
| 3236 | a `:substitute` command. In that case `:execute` can |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3237 | avoid problems: > |
| 3238 | :if version >= 600 |
| 3239 | : execute "silent 1,$delete" |
| 3240 | :endif |
| 3241 | < |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3242 | In |Vim9| script `:endif` cannot be shortened, to |
| 3243 | improve script readability. |
| 3244 | NOTE: The `:append` and `:insert` commands don't work |
| 3245 | properly in between `:if` and `:endif`. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3246 | |
| 3247 | *:else* *:el* *E581* *E583* |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3248 | :el[se] Execute the commands until the next matching `:else` |
| 3249 | or `:endif` if they previously were not being |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3250 | executed. |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3251 | In |Vim9| script `:else` cannot be shortened, to |
| 3252 | improve script readability. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3253 | |
| 3254 | *:elseif* *:elsei* *E582* *E584* |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3255 | :elsei[f] {expr1} Short for `:else` `:if`, with the addition that there |
| 3256 | is no extra `:endif`. |
| 3257 | In |Vim9| script `:elseif` cannot be shortened, to |
| 3258 | improve script readability. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3259 | |
| 3260 | :wh[ile] {expr1} *:while* *:endwhile* *:wh* *:endw* |
Bram Moolenaar | 3a3a723 | 2005-01-17 22:16:15 +0000 | [diff] [blame] | 3261 | *E170* *E585* *E588* *E733* |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3262 | :endw[hile] Repeat the commands between `:while` and `:endwhile`, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3263 | as long as {expr1} evaluates to non-zero. |
| 3264 | When an error is detected from a command inside the |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3265 | loop, execution continues after the `endwhile`. |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 3266 | Example: > |
| 3267 | :let lnum = 1 |
| 3268 | :while lnum <= line("$") |
| 3269 | :call FixLine(lnum) |
| 3270 | :let lnum = lnum + 1 |
| 3271 | :endwhile |
| 3272 | < |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3273 | In |Vim9| script `:while` and `:endwhile` cannot be |
| 3274 | shortened, to improve script readability. |
| 3275 | NOTE: The `:append` and `:insert` commands don't work |
| 3276 | properly inside a `:while` and `:for` loop. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3277 | |
Bram Moolenaar | 5e66b42 | 2019-01-24 21:58:10 +0100 | [diff] [blame] | 3278 | :for {var} in {object} *:for* *E690* *E732* |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 3279 | :endfo[r] *:endfo* *:endfor* |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3280 | Repeat the commands between `:for` and `:endfor` for |
Bram Moolenaar | 3f32a5f | 2022-05-12 20:34:15 +0100 | [diff] [blame] | 3281 | each item in {object}. {object} can be a |List|, |
| 3282 | a |Blob| or a |String|. *E1177* |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 3283 | |
| 3284 | Variable {var} is set to the value of each item. |
| 3285 | In |Vim9| script the loop variable must not have been |
| 3286 | declared yet, unless when it is a |
| 3287 | global/window/tab/buffer variable. |
| 3288 | |
| 3289 | When an error is detected for a command inside the |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3290 | loop, execution continues after the `endfor`. |
Bram Moolenaar | 5e66b42 | 2019-01-24 21:58:10 +0100 | [diff] [blame] | 3291 | Changing {object} inside the loop affects what items |
| 3292 | are used. Make a copy if this is unwanted: > |
Bram Moolenaar | de8866b | 2005-01-06 23:24:37 +0000 | [diff] [blame] | 3293 | :for item in copy(mylist) |
Bram Moolenaar | 5e66b42 | 2019-01-24 21:58:10 +0100 | [diff] [blame] | 3294 | < |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 3295 | When {object} is a |List| and not making a copy, in |
| 3296 | legacy script Vim stores a reference to the next item |
| 3297 | in the |List| before executing the commands with the |
| 3298 | current item. Thus the current item can be removed |
| 3299 | without effect. Removing any later item means it will |
| 3300 | not be found. Thus the following example works (an |
| 3301 | inefficient way to make a |List| empty): > |
Bram Moolenaar | 8f3f58f | 2010-01-06 20:52:26 +0100 | [diff] [blame] | 3302 | for item in mylist |
| 3303 | call remove(mylist, 0) |
| 3304 | endfor |
Bram Moolenaar | 5e66b42 | 2019-01-24 21:58:10 +0100 | [diff] [blame] | 3305 | < Note that reordering the |List| (e.g., with sort() or |
Bram Moolenaar | 9588a0f | 2005-01-08 21:45:39 +0000 | [diff] [blame] | 3306 | reverse()) may have unexpected effects. |
Bram Moolenaar | 5da3605 | 2021-12-27 15:39:57 +0000 | [diff] [blame] | 3307 | In |Vim9| script the index is used. If an item before |
| 3308 | the current one is deleted the next item will be |
| 3309 | skipped. |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 3310 | |
Bram Moolenaar | 5e66b42 | 2019-01-24 21:58:10 +0100 | [diff] [blame] | 3311 | When {object} is a |Blob|, Vim always makes a copy to |
| 3312 | iterate over. Unlike with |List|, modifying the |
| 3313 | |Blob| does not affect the iteration. |
| 3314 | |
Bram Moolenaar | 9b03d3e | 2022-08-30 20:26:34 +0100 | [diff] [blame] | 3315 | When {object} is a |String| each item is a string with |
| 3316 | one character, plus any combining characters. |
| 3317 | |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3318 | In |Vim9| script `:endfor` cannot be shortened, to |
| 3319 | improve script readability. |
| 3320 | |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 3321 | :for [{var1}, {var2}, ...] in {listlist} |
Bram Moolenaar | f10911e | 2022-01-29 22:20:48 +0000 | [diff] [blame] | 3322 | :endfo[r] *E1140* |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3323 | Like `:for` above, but each item in {listlist} must be |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 3324 | a list, of which each item is assigned to {var1}, |
| 3325 | {var2}, etc. Example: > |
| 3326 | :for [lnum, col] in [[1, 3], [2, 5], [3, 8]] |
| 3327 | :echo getline(lnum)[col] |
| 3328 | :endfor |
| 3329 | < |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3330 | *:continue* *:con* *E586* |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3331 | :con[tinue] When used inside a `:while` or `:for` loop, jumps back |
Bram Moolenaar | 1280586 | 2005-01-05 22:16:17 +0000 | [diff] [blame] | 3332 | to the start of the loop. |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3333 | If it is used after a `:try` inside the loop but |
| 3334 | before the matching `:finally` (if present), the |
| 3335 | commands following the `:finally` up to the matching |
| 3336 | `:endtry` are executed first. This process applies to |
| 3337 | all nested `:try`s inside the loop. The outermost |
| 3338 | `:endtry` then jumps back to the start of the loop. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3339 | |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3340 | In |Vim9| script `:cont` is the shortest form, to |
| 3341 | improve script readability. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3342 | *:break* *:brea* *E587* |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3343 | :brea[k] When used inside a `:while` or `:for` loop, skips to |
| 3344 | the command after the matching `:endwhile` or |
| 3345 | `:endfor`. |
| 3346 | If it is used after a `:try` inside the loop but |
| 3347 | before the matching `:finally` (if present), the |
| 3348 | commands following the `:finally` up to the matching |
| 3349 | `:endtry` are executed first. This process applies to |
| 3350 | all nested `:try`s inside the loop. The outermost |
| 3351 | `:endtry` then jumps to the command after the loop. |
| 3352 | |
| 3353 | In |Vim9| script `:break` cannot be shortened, to |
| 3354 | improve script readability. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3355 | |
Bram Moolenaar | 6f4754b | 2022-01-23 12:07:04 +0000 | [diff] [blame] | 3356 | :try *:try* *:endt* *:endtry* |
| 3357 | *E600* *E601* *E602* *E1032* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3358 | :endt[ry] Change the error handling for the commands between |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3359 | `:try` and `:endtry` including everything being |
| 3360 | executed across `:source` commands, function calls, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3361 | or autocommand invocations. |
| 3362 | |
| 3363 | When an error or interrupt is detected and there is |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3364 | a `:finally` command following, execution continues |
| 3365 | after the `:finally`. Otherwise, or when the |
| 3366 | `:endtry` is reached thereafter, the next |
| 3367 | (dynamically) surrounding `:try` is checked for |
| 3368 | a corresponding `:finally` etc. Then the script |
Bram Moolenaar | bc93ceb | 2020-02-26 13:36:21 +0100 | [diff] [blame] | 3369 | processing is terminated. Whether a function |
| 3370 | definition has an "abort" argument does not matter. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3371 | Example: > |
Bram Moolenaar | bc93ceb | 2020-02-26 13:36:21 +0100 | [diff] [blame] | 3372 | try | call Unknown() | finally | echomsg "cleanup" | endtry |
| 3373 | echomsg "not reached" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3374 | < |
| 3375 | Moreover, an error or interrupt (dynamically) inside |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3376 | `:try` and `:endtry` is converted to an exception. It |
| 3377 | can be caught as if it were thrown by a `:throw` |
| 3378 | command (see `:catch`). In this case, the script |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3379 | processing is not terminated. |
| 3380 | |
| 3381 | The value "Vim:Interrupt" is used for an interrupt |
| 3382 | exception. An error in a Vim command is converted |
| 3383 | to a value of the form "Vim({command}):{errmsg}", |
| 3384 | other errors are converted to a value of the form |
| 3385 | "Vim:{errmsg}". {command} is the full command name, |
| 3386 | and {errmsg} is the message that is displayed if the |
| 3387 | error exception is not caught, always beginning with |
| 3388 | the error number. |
| 3389 | Examples: > |
Bram Moolenaar | bc93ceb | 2020-02-26 13:36:21 +0100 | [diff] [blame] | 3390 | try | sleep 100 | catch /^Vim:Interrupt$/ | endtry |
| 3391 | try | edit | catch /^Vim(edit):E\d\+/ | echo "error" | endtry |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3392 | < |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3393 | In |Vim9| script `:endtry` cannot be shortened, to |
| 3394 | improve script readability. |
| 3395 | |
Bram Moolenaar | 6f4754b | 2022-01-23 12:07:04 +0000 | [diff] [blame] | 3396 | *:cat* *:catch* |
| 3397 | *E603* *E604* *E605* *E654* *E1033* |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3398 | :cat[ch] /{pattern}/ The following commands until the next `:catch`, |
| 3399 | `:finally`, or `:endtry` that belongs to the same |
| 3400 | `:try` as the `:catch` are executed when an exception |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3401 | matching {pattern} is being thrown and has not yet |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3402 | been caught by a previous `:catch`. Otherwise, these |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3403 | commands are skipped. |
| 3404 | When {pattern} is omitted all errors are caught. |
| 3405 | Examples: > |
Bram Moolenaar | 647e24b | 2019-03-17 16:39:46 +0100 | [diff] [blame] | 3406 | :catch /^Vim:Interrupt$/ " catch interrupts (CTRL-C) |
| 3407 | :catch /^Vim\%((\a\+)\)\=:E/ " catch all Vim errors |
| 3408 | :catch /^Vim\%((\a\+)\)\=:/ " catch errors and interrupts |
| 3409 | :catch /^Vim(write):/ " catch all errors in :write |
| 3410 | :catch /^Vim\%((\a\+)\)\=:E123:/ " catch error E123 |
| 3411 | :catch /my-exception/ " catch user exception |
| 3412 | :catch /.*/ " catch everything |
| 3413 | :catch " same as /.*/ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3414 | < |
| 3415 | Another character can be used instead of / around the |
| 3416 | {pattern}, so long as it does not have a special |
| 3417 | meaning (e.g., '|' or '"') and doesn't occur inside |
Bram Moolenaar | 6f4754b | 2022-01-23 12:07:04 +0000 | [diff] [blame] | 3418 | {pattern}. *E1067* |
Bram Moolenaar | 7e38ea2 | 2014-04-05 22:55:53 +0200 | [diff] [blame] | 3419 | Information about the exception is available in |
| 3420 | |v:exception|. Also see |throw-variables|. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3421 | NOTE: It is not reliable to ":catch" the TEXT of |
| 3422 | an error message because it may vary in different |
| 3423 | locales. |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3424 | In |Vim9| script `:catch` cannot be shortened, to |
| 3425 | improve script readability. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3426 | |
| 3427 | *:fina* *:finally* *E606* *E607* |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3428 | :fina[lly] The following commands until the matching `:endtry` |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3429 | are executed whenever the part between the matching |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3430 | `:try` and the `:finally` is left: either by falling |
| 3431 | through to the `:finally` or by a `:continue`, |
| 3432 | `:break`, `:finish`, or `:return`, or by an error or |
| 3433 | interrupt or exception (see `:throw`). |
| 3434 | |
| 3435 | In |Vim9| script `:finally` cannot be shortened, to |
| 3436 | improve script readability and avoid confusion with |
| 3437 | `:final`. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3438 | |
Bram Moolenaar | f10911e | 2022-01-29 22:20:48 +0000 | [diff] [blame] | 3439 | *:th* *:throw* *E608* *E1129* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3440 | :th[row] {expr1} The {expr1} is evaluated and thrown as an exception. |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3441 | If the ":throw" is used after a `:try` but before the |
| 3442 | first corresponding `:catch`, commands are skipped |
| 3443 | until the first `:catch` matching {expr1} is reached. |
| 3444 | If there is no such `:catch` or if the ":throw" is |
| 3445 | used after a `:catch` but before the `:finally`, the |
| 3446 | commands following the `:finally` (if present) up to |
| 3447 | the matching `:endtry` are executed. If the `:throw` |
| 3448 | is after the `:finally`, commands up to the `:endtry` |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3449 | are skipped. At the ":endtry", this process applies |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3450 | again for the next dynamically surrounding `:try` |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3451 | (which may be found in a calling function or sourcing |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3452 | script), until a matching `:catch` has been found. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3453 | If the exception is not caught, the command processing |
| 3454 | is terminated. |
| 3455 | Example: > |
| 3456 | :try | throw "oops" | catch /^oo/ | echo "caught" | endtry |
Bram Moolenaar | 662db67 | 2011-03-22 14:05:35 +0100 | [diff] [blame] | 3457 | < Note that "catch" may need to be on a separate line |
| 3458 | for when an error causes the parsing to skip the whole |
| 3459 | line and not see the "|" that separates the commands. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3460 | |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3461 | In |Vim9| script `:throw` cannot be shortened, to |
| 3462 | improve script readability. |
| 3463 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3464 | *:ec* *:echo* |
| 3465 | :ec[ho] {expr1} .. Echoes each {expr1}, with a space in between. The |
| 3466 | first {expr1} starts on a new line. |
| 3467 | Also see |:comment|. |
| 3468 | Use "\n" to start a new line. Use "\r" to move the |
| 3469 | cursor to the first column. |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3470 | Uses the highlighting set by the `:echohl` command. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3471 | Cannot be followed by a comment. |
| 3472 | Example: > |
| 3473 | :echo "the value of 'shell' is" &shell |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 3474 | < *:echo-redraw* |
| 3475 | A later redraw may make the message disappear again. |
| 3476 | And since Vim mostly postpones redrawing until it's |
| 3477 | finished with a sequence of commands this happens |
| 3478 | quite often. To avoid that a command from before the |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3479 | `:echo` causes a redraw afterwards (redraws are often |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 3480 | postponed until you type something), force a redraw |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3481 | with the `:redraw` command. Example: > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3482 | :new | redraw | echo "there is a new window" |
| 3483 | < |
| 3484 | *:echon* |
| 3485 | :echon {expr1} .. Echoes each {expr1}, without anything added. Also see |
| 3486 | |:comment|. |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3487 | Uses the highlighting set by the `:echohl` command. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3488 | Cannot be followed by a comment. |
| 3489 | Example: > |
| 3490 | :echon "the value of 'shell' is " &shell |
| 3491 | < |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3492 | Note the difference between using `:echo`, which is a |
| 3493 | Vim command, and `:!echo`, which is an external shell |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3494 | command: > |
| 3495 | :!echo % --> filename |
| 3496 | < The arguments of ":!" are expanded, see |:_%|. > |
| 3497 | :!echo "%" --> filename or "filename" |
| 3498 | < Like the previous example. Whether you see the double |
| 3499 | quotes or not depends on your 'shell'. > |
| 3500 | :echo % --> nothing |
| 3501 | < The '%' is an illegal character in an expression. > |
| 3502 | :echo "%" --> % |
| 3503 | < This just echoes the '%' character. > |
| 3504 | :echo expand("%") --> filename |
| 3505 | < This calls the expand() function to expand the '%'. |
| 3506 | |
| 3507 | *:echoh* *:echohl* |
| 3508 | :echoh[l] {name} Use the highlight group {name} for the following |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3509 | `:echo`, `:echon` and `:echomsg` commands. Also used |
| 3510 | for the `input()` prompt. Example: > |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3511 | :echohl WarningMsg | echo "Don't panic!" | echohl None |
| 3512 | < Don't forget to set the group back to "None", |
| 3513 | otherwise all following echo's will be highlighted. |
| 3514 | |
| 3515 | *:echom* *:echomsg* |
| 3516 | :echom[sg] {expr1} .. Echo the expression(s) as a true message, saving the |
| 3517 | message in the |message-history|. |
| 3518 | Spaces are placed between the arguments as with the |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3519 | `:echo` command. But unprintable characters are |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3520 | displayed, not interpreted. |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3521 | The parsing works slightly different from `:echo`, |
| 3522 | more like `:execute`. All the expressions are first |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 3523 | evaluated and concatenated before echoing anything. |
Bram Moolenaar | 461a7fc | 2018-12-22 13:28:07 +0100 | [diff] [blame] | 3524 | If expressions does not evaluate to a Number or |
| 3525 | String, string() is used to turn it into a string. |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3526 | Uses the highlighting set by the `:echohl` command. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3527 | Example: > |
| 3528 | :echomsg "It's a Zizzer Zazzer Zuzz, as you can plainly see." |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 3529 | < See |:echo-redraw| to avoid the message disappearing |
| 3530 | when the screen is redrawn. |
Bram Moolenaar | 37fef16 | 2022-08-29 18:16:32 +0100 | [diff] [blame] | 3531 | |
| 3532 | *:echow* *:echowin* *:echowindow* |
Bram Moolenaar | bdc09a1 | 2022-10-07 14:31:45 +0100 | [diff] [blame] | 3533 | :[N]echow[indow] {expr1} .. |
Bram Moolenaar | 37fef16 | 2022-08-29 18:16:32 +0100 | [diff] [blame] | 3534 | Like |:echomsg| but when the messages popup window is |
| 3535 | available the message is displayed there. This means |
| 3536 | it will show for three seconds and avoid a |
Bram Moolenaar | 9b03d3e | 2022-08-30 20:26:34 +0100 | [diff] [blame] | 3537 | |hit-enter| prompt. If you want to hide it before |
| 3538 | that, press Esc in Normal mode (when it would |
Bram Moolenaar | 71b6d33 | 2022-09-10 13:13:14 +0100 | [diff] [blame] | 3539 | otherwise beep). If it disappears too soon you can |
| 3540 | use `:messages` to see the text. |
Bram Moolenaar | bdc09a1 | 2022-10-07 14:31:45 +0100 | [diff] [blame] | 3541 | When [N] is given then the window will show up for |
| 3542 | this number of seconds. The last `:echowindow` with a |
| 3543 | count matters, it is used once only. |
Bram Moolenaar | 37fef16 | 2022-08-29 18:16:32 +0100 | [diff] [blame] | 3544 | The message window is available when Vim was compiled |
| 3545 | with the +timer and the +popupwin features. |
| 3546 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3547 | *:echoe* *:echoerr* |
| 3548 | :echoe[rr] {expr1} .. Echo the expression(s) as an error message, saving the |
| 3549 | message in the |message-history|. When used in a |
| 3550 | script or function the line number will be added. |
| 3551 | Spaces are placed between the arguments as with the |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3552 | `:echomsg` command. When used inside a try conditional, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3553 | the message is raised as an error exception instead |
| 3554 | (see |try-echoerr|). |
| 3555 | Example: > |
| 3556 | :echoerr "This script just failed!" |
Bram Moolenaar | 1588bc8 | 2022-03-08 21:35:07 +0000 | [diff] [blame] | 3557 | < If you just want a highlighted message use `:echohl`. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3558 | And to get a beep: > |
| 3559 | :exe "normal \<Esc>" |
Bram Moolenaar | 4c86830 | 2021-03-22 16:19:45 +0100 | [diff] [blame] | 3560 | |
| 3561 | :echoc[onsole] {expr1} .. *:echoc* *:echoconsole* |
| 3562 | Intended for testing: works like `:echomsg` but when |
| 3563 | running in the GUI and started from a terminal write |
| 3564 | the text to stdout. |
| 3565 | |
Bram Moolenaar | 09c6f26 | 2019-11-17 15:55:14 +0100 | [diff] [blame] | 3566 | *:eval* |
| 3567 | :eval {expr} Evaluate {expr} and discard the result. Example: > |
| 3568 | :eval Getlist()->Filter()->append('$') |
| 3569 | |
| 3570 | < The expression is supposed to have a side effect, |
| 3571 | since the resulting value is not used. In the example |
| 3572 | the `append()` call appends the List with text to the |
| 3573 | buffer. This is similar to `:call` but works with any |
| 3574 | expression. |
Bram Moolenaar | a2baa73 | 2022-02-04 16:09:54 +0000 | [diff] [blame] | 3575 | In |Vim9| script an expression without an effect will |
| 3576 | result in error *E1207* . This should help noticing |
| 3577 | mistakes. |
Bram Moolenaar | 09c6f26 | 2019-11-17 15:55:14 +0100 | [diff] [blame] | 3578 | |
| 3579 | The command can be shortened to `:ev` or `:eva`, but |
| 3580 | these are hard to recognize and therefore not to be |
| 3581 | used. |
| 3582 | |
Bram Moolenaar | bc93ceb | 2020-02-26 13:36:21 +0100 | [diff] [blame] | 3583 | The command cannot be followed by "|" and another |
| 3584 | command, since "|" is seen as part of the expression. |
| 3585 | |
Bram Moolenaar | 09c6f26 | 2019-11-17 15:55:14 +0100 | [diff] [blame] | 3586 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3587 | *:exe* *:execute* |
| 3588 | :exe[cute] {expr1} .. Executes the string that results from the evaluation |
Bram Moolenaar | 00a927d | 2010-05-14 23:24:24 +0200 | [diff] [blame] | 3589 | of {expr1} as an Ex command. |
| 3590 | Multiple arguments are concatenated, with a space in |
Bram Moolenaar | 7e6a515 | 2021-01-02 16:39:53 +0100 | [diff] [blame] | 3591 | between. To avoid the extra space use the ".." |
Bram Moolenaar | 00a927d | 2010-05-14 23:24:24 +0200 | [diff] [blame] | 3592 | operator to concatenate strings into one argument. |
| 3593 | {expr1} is used as the processed command, command line |
| 3594 | editing keys are not recognized. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3595 | Cannot be followed by a comment. |
| 3596 | Examples: > |
Bram Moolenaar | 00a927d | 2010-05-14 23:24:24 +0200 | [diff] [blame] | 3597 | :execute "buffer" nextbuf |
Bram Moolenaar | c8cdf0f | 2021-03-13 13:28:13 +0100 | [diff] [blame] | 3598 | :execute "normal" count .. "w" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3599 | < |
| 3600 | ":execute" can be used to append a command to commands |
| 3601 | that don't accept a '|'. Example: > |
| 3602 | :execute '!ls' | echo "theend" |
| 3603 | |
| 3604 | < ":execute" is also a nice way to avoid having to type |
| 3605 | control characters in a Vim script for a ":normal" |
| 3606 | command: > |
| 3607 | :execute "normal ixxx\<Esc>" |
| 3608 | < This has an <Esc> character, see |expr-string|. |
| 3609 | |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 3610 | Be careful to correctly escape special characters in |
| 3611 | file names. The |fnameescape()| function can be used |
Bram Moolenaar | 05bb953 | 2008-07-04 09:44:11 +0000 | [diff] [blame] | 3612 | for Vim commands, |shellescape()| for |:!| commands. |
| 3613 | Examples: > |
Bram Moolenaar | c8cdf0f | 2021-03-13 13:28:13 +0100 | [diff] [blame] | 3614 | :execute "e " .. fnameescape(filename) |
| 3615 | :execute "!ls " .. shellescape(filename, 1) |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 3616 | < |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3617 | Note: The executed string may be any command-line, but |
Bram Moolenaar | 76f3b1a | 2014-03-27 22:30:07 +0100 | [diff] [blame] | 3618 | starting or ending "if", "while" and "for" does not |
| 3619 | always work, because when commands are skipped the |
| 3620 | ":execute" is not evaluated and Vim loses track of |
| 3621 | where blocks start and end. Also "break" and |
| 3622 | "continue" should not be inside ":execute". |
| 3623 | This example does not work, because the ":execute" is |
| 3624 | not evaluated and Vim does not see the "while", and |
| 3625 | gives an error for finding an ":endwhile": > |
| 3626 | :if 0 |
| 3627 | : execute 'while i > 5' |
| 3628 | : echo "test" |
| 3629 | : endwhile |
| 3630 | :endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3631 | < |
| 3632 | It is allowed to have a "while" or "if" command |
| 3633 | completely in the executed string: > |
| 3634 | :execute 'while i < 5 | echo i | let i = i + 1 | endwhile' |
| 3635 | < |
| 3636 | |
Bram Moolenaar | 8f3f58f | 2010-01-06 20:52:26 +0100 | [diff] [blame] | 3637 | *:exe-comment* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3638 | ":execute", ":echo" and ":echon" cannot be followed by |
| 3639 | a comment directly, because they see the '"' as the |
| 3640 | start of a string. But, you can use '|' followed by a |
| 3641 | comment. Example: > |
| 3642 | :echo "foo" | "this is a comment |
| 3643 | |
| 3644 | ============================================================================== |
| 3645 | 8. Exception handling *exception-handling* |
| 3646 | |
| 3647 | The Vim script language comprises an exception handling feature. This section |
| 3648 | explains how it can be used in a Vim script. |
| 3649 | |
| 3650 | Exceptions may be raised by Vim on an error or on interrupt, see |
| 3651 | |catch-errors| and |catch-interrupt|. You can also explicitly throw an |
| 3652 | exception by using the ":throw" command, see |throw-catch|. |
| 3653 | |
| 3654 | |
| 3655 | TRY CONDITIONALS *try-conditionals* |
| 3656 | |
| 3657 | Exceptions can be caught or can cause cleanup code to be executed. You can |
| 3658 | use a try conditional to specify catch clauses (that catch exceptions) and/or |
| 3659 | a finally clause (to be executed for cleanup). |
| 3660 | A try conditional begins with a |:try| command and ends at the matching |
| 3661 | |:endtry| command. In between, you can use a |:catch| command to start |
| 3662 | a catch clause, or a |:finally| command to start a finally clause. There may |
| 3663 | be none or multiple catch clauses, but there is at most one finally clause, |
| 3664 | which must not be followed by any catch clauses. The lines before the catch |
| 3665 | clauses and the finally clause is called a try block. > |
| 3666 | |
| 3667 | :try |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 3668 | : ... |
| 3669 | : ... TRY BLOCK |
| 3670 | : ... |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3671 | :catch /{pattern}/ |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 3672 | : ... |
| 3673 | : ... CATCH CLAUSE |
| 3674 | : ... |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3675 | :catch /{pattern}/ |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 3676 | : ... |
| 3677 | : ... CATCH CLAUSE |
| 3678 | : ... |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3679 | :finally |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 3680 | : ... |
| 3681 | : ... FINALLY CLAUSE |
| 3682 | : ... |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3683 | :endtry |
| 3684 | |
| 3685 | The try conditional allows to watch code for exceptions and to take the |
| 3686 | appropriate actions. Exceptions from the try block may be caught. Exceptions |
| 3687 | from the try block and also the catch clauses may cause cleanup actions. |
| 3688 | When no exception is thrown during execution of the try block, the control |
| 3689 | is transferred to the finally clause, if present. After its execution, the |
| 3690 | script continues with the line following the ":endtry". |
| 3691 | When an exception occurs during execution of the try block, the remaining |
| 3692 | lines in the try block are skipped. The exception is matched against the |
| 3693 | patterns specified as arguments to the ":catch" commands. The catch clause |
| 3694 | after the first matching ":catch" is taken, other catch clauses are not |
| 3695 | executed. The catch clause ends when the next ":catch", ":finally", or |
| 3696 | ":endtry" command is reached - whatever is first. Then, the finally clause |
| 3697 | (if present) is executed. When the ":endtry" is reached, the script execution |
| 3698 | continues in the following line as usual. |
| 3699 | When an exception that does not match any of the patterns specified by the |
| 3700 | ":catch" commands is thrown in the try block, the exception is not caught by |
| 3701 | that try conditional and none of the catch clauses is executed. Only the |
| 3702 | finally clause, if present, is taken. The exception pends during execution of |
| 3703 | the finally clause. It is resumed at the ":endtry", so that commands after |
| 3704 | the ":endtry" are not executed and the exception might be caught elsewhere, |
| 3705 | see |try-nesting|. |
| 3706 | When during execution of a catch clause another exception is thrown, the |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 3707 | remaining lines in that catch clause are not executed. The new exception is |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3708 | not matched against the patterns in any of the ":catch" commands of the same |
| 3709 | try conditional and none of its catch clauses is taken. If there is, however, |
| 3710 | a finally clause, it is executed, and the exception pends during its |
| 3711 | execution. The commands following the ":endtry" are not executed. The new |
| 3712 | exception might, however, be caught elsewhere, see |try-nesting|. |
| 3713 | When during execution of the finally clause (if present) an exception is |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 3714 | thrown, the remaining lines in the finally clause are skipped. If the finally |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3715 | clause has been taken because of an exception from the try block or one of the |
| 3716 | catch clauses, the original (pending) exception is discarded. The commands |
| 3717 | following the ":endtry" are not executed, and the exception from the finally |
| 3718 | clause is propagated and can be caught elsewhere, see |try-nesting|. |
| 3719 | |
| 3720 | The finally clause is also executed, when a ":break" or ":continue" for |
| 3721 | a ":while" loop enclosing the complete try conditional is executed from the |
| 3722 | try block or a catch clause. Or when a ":return" or ":finish" is executed |
| 3723 | from the try block or a catch clause of a try conditional in a function or |
| 3724 | sourced script, respectively. The ":break", ":continue", ":return", or |
| 3725 | ":finish" pends during execution of the finally clause and is resumed when the |
| 3726 | ":endtry" is reached. It is, however, discarded when an exception is thrown |
| 3727 | from the finally clause. |
| 3728 | When a ":break" or ":continue" for a ":while" loop enclosing the complete |
| 3729 | try conditional or when a ":return" or ":finish" is encountered in the finally |
| 3730 | clause, the rest of the finally clause is skipped, and the ":break", |
| 3731 | ":continue", ":return" or ":finish" is executed as usual. If the finally |
| 3732 | clause has been taken because of an exception or an earlier ":break", |
| 3733 | ":continue", ":return", or ":finish" from the try block or a catch clause, |
| 3734 | this pending exception or command is discarded. |
| 3735 | |
| 3736 | For examples see |throw-catch| and |try-finally|. |
| 3737 | |
| 3738 | |
Bram Moolenaar | 76db9e0 | 2022-11-09 21:21:04 +0000 | [diff] [blame] | 3739 | NESTING OF TRY CONDITIONALS *try-nesting* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3740 | |
| 3741 | Try conditionals can be nested arbitrarily. That is, a complete try |
| 3742 | conditional can be put into the try block, a catch clause, or the finally |
| 3743 | clause of another try conditional. If the inner try conditional does not |
| 3744 | catch an exception thrown in its try block or throws a new exception from one |
| 3745 | of its catch clauses or its finally clause, the outer try conditional is |
| 3746 | checked according to the rules above. If the inner try conditional is in the |
| 3747 | try block of the outer try conditional, its catch clauses are checked, but |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 3748 | otherwise only the finally clause is executed. It does not matter for |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3749 | nesting, whether the inner try conditional is directly contained in the outer |
| 3750 | one, or whether the outer one sources a script or calls a function containing |
| 3751 | the inner try conditional. |
| 3752 | |
| 3753 | When none of the active try conditionals catches an exception, just their |
| 3754 | finally clauses are executed. Thereafter, the script processing terminates. |
| 3755 | An error message is displayed in case of an uncaught exception explicitly |
| 3756 | thrown by a ":throw" command. For uncaught error and interrupt exceptions |
| 3757 | implicitly raised by Vim, the error message(s) or interrupt message are shown |
| 3758 | as usual. |
| 3759 | |
| 3760 | For examples see |throw-catch|. |
| 3761 | |
| 3762 | |
| 3763 | EXAMINING EXCEPTION HANDLING CODE *except-examine* |
| 3764 | |
| 3765 | Exception handling code can get tricky. If you are in doubt what happens, set |
| 3766 | 'verbose' to 13 or use the ":13verbose" command modifier when sourcing your |
| 3767 | script file. Then you see when an exception is thrown, discarded, caught, or |
| 3768 | finished. When using a verbosity level of at least 14, things pending in |
| 3769 | a finally clause are also shown. This information is also given in debug mode |
| 3770 | (see |debug-scripts|). |
| 3771 | |
| 3772 | |
| 3773 | THROWING AND CATCHING EXCEPTIONS *throw-catch* |
| 3774 | |
| 3775 | You can throw any number or string as an exception. Use the |:throw| command |
| 3776 | and pass the value to be thrown as argument: > |
| 3777 | :throw 4711 |
| 3778 | :throw "string" |
| 3779 | < *throw-expression* |
| 3780 | You can also specify an expression argument. The expression is then evaluated |
| 3781 | first, and the result is thrown: > |
| 3782 | :throw 4705 + strlen("string") |
| 3783 | :throw strpart("strings", 0, 6) |
| 3784 | |
| 3785 | An exception might be thrown during evaluation of the argument of the ":throw" |
| 3786 | command. Unless it is caught there, the expression evaluation is abandoned. |
| 3787 | The ":throw" command then does not throw a new exception. |
| 3788 | Example: > |
| 3789 | |
| 3790 | :function! Foo(arg) |
| 3791 | : try |
| 3792 | : throw a:arg |
| 3793 | : catch /foo/ |
| 3794 | : endtry |
| 3795 | : return 1 |
| 3796 | :endfunction |
| 3797 | : |
| 3798 | :function! Bar() |
| 3799 | : echo "in Bar" |
| 3800 | : return 4710 |
| 3801 | :endfunction |
| 3802 | : |
| 3803 | :throw Foo("arrgh") + Bar() |
| 3804 | |
| 3805 | This throws "arrgh", and "in Bar" is not displayed since Bar() is not |
| 3806 | executed. > |
| 3807 | :throw Foo("foo") + Bar() |
| 3808 | however displays "in Bar" and throws 4711. |
| 3809 | |
| 3810 | Any other command that takes an expression as argument might also be |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 3811 | abandoned by an (uncaught) exception during the expression evaluation. The |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3812 | exception is then propagated to the caller of the command. |
| 3813 | Example: > |
| 3814 | |
| 3815 | :if Foo("arrgh") |
| 3816 | : echo "then" |
| 3817 | :else |
| 3818 | : echo "else" |
| 3819 | :endif |
| 3820 | |
| 3821 | Here neither of "then" or "else" is displayed. |
| 3822 | |
| 3823 | *catch-order* |
| 3824 | Exceptions can be caught by a try conditional with one or more |:catch| |
| 3825 | commands, see |try-conditionals|. The values to be caught by each ":catch" |
| 3826 | command can be specified as a pattern argument. The subsequent catch clause |
| 3827 | gets executed when a matching exception is caught. |
| 3828 | Example: > |
| 3829 | |
| 3830 | :function! Foo(value) |
| 3831 | : try |
| 3832 | : throw a:value |
| 3833 | : catch /^\d\+$/ |
| 3834 | : echo "Number thrown" |
| 3835 | : catch /.*/ |
| 3836 | : echo "String thrown" |
| 3837 | : endtry |
| 3838 | :endfunction |
| 3839 | : |
| 3840 | :call Foo(0x1267) |
| 3841 | :call Foo('string') |
| 3842 | |
| 3843 | The first call to Foo() displays "Number thrown", the second "String thrown". |
| 3844 | An exception is matched against the ":catch" commands in the order they are |
| 3845 | specified. Only the first match counts. So you should place the more |
| 3846 | specific ":catch" first. The following order does not make sense: > |
| 3847 | |
| 3848 | : catch /.*/ |
| 3849 | : echo "String thrown" |
| 3850 | : catch /^\d\+$/ |
| 3851 | : echo "Number thrown" |
| 3852 | |
| 3853 | The first ":catch" here matches always, so that the second catch clause is |
| 3854 | never taken. |
| 3855 | |
| 3856 | *throw-variables* |
| 3857 | If you catch an exception by a general pattern, you may access the exact value |
| 3858 | in the variable |v:exception|: > |
| 3859 | |
| 3860 | : catch /^\d\+$/ |
| 3861 | : echo "Number thrown. Value is" v:exception |
| 3862 | |
| 3863 | You may also be interested where an exception was thrown. This is stored in |
| 3864 | |v:throwpoint|. Note that "v:exception" and "v:throwpoint" are valid for the |
| 3865 | exception most recently caught as long it is not finished. |
| 3866 | Example: > |
| 3867 | |
| 3868 | :function! Caught() |
| 3869 | : if v:exception != "" |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 3870 | : echo 'Caught "' . v:exception .. '" in ' .. v:throwpoint |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3871 | : else |
| 3872 | : echo 'Nothing caught' |
| 3873 | : endif |
| 3874 | :endfunction |
| 3875 | : |
| 3876 | :function! Foo() |
| 3877 | : try |
| 3878 | : try |
| 3879 | : try |
| 3880 | : throw 4711 |
| 3881 | : finally |
| 3882 | : call Caught() |
| 3883 | : endtry |
| 3884 | : catch /.*/ |
| 3885 | : call Caught() |
| 3886 | : throw "oops" |
| 3887 | : endtry |
| 3888 | : catch /.*/ |
| 3889 | : call Caught() |
| 3890 | : finally |
| 3891 | : call Caught() |
| 3892 | : endtry |
| 3893 | :endfunction |
| 3894 | : |
| 3895 | :call Foo() |
| 3896 | |
| 3897 | This displays > |
| 3898 | |
| 3899 | Nothing caught |
| 3900 | Caught "4711" in function Foo, line 4 |
| 3901 | Caught "oops" in function Foo, line 10 |
| 3902 | Nothing caught |
| 3903 | |
| 3904 | A practical example: The following command ":LineNumber" displays the line |
| 3905 | number in the script or function where it has been used: > |
| 3906 | |
| 3907 | :function! LineNumber() |
| 3908 | : return substitute(v:throwpoint, '.*\D\(\d\+\).*', '\1', "") |
| 3909 | :endfunction |
| 3910 | :command! LineNumber try | throw "" | catch | echo LineNumber() | endtry |
| 3911 | < |
| 3912 | *try-nested* |
| 3913 | An exception that is not caught by a try conditional can be caught by |
| 3914 | a surrounding try conditional: > |
| 3915 | |
| 3916 | :try |
| 3917 | : try |
| 3918 | : throw "foo" |
| 3919 | : catch /foobar/ |
| 3920 | : echo "foobar" |
| 3921 | : finally |
| 3922 | : echo "inner finally" |
| 3923 | : endtry |
| 3924 | :catch /foo/ |
| 3925 | : echo "foo" |
| 3926 | :endtry |
| 3927 | |
| 3928 | The inner try conditional does not catch the exception, just its finally |
| 3929 | clause is executed. The exception is then caught by the outer try |
| 3930 | conditional. The example displays "inner finally" and then "foo". |
| 3931 | |
| 3932 | *throw-from-catch* |
| 3933 | You can catch an exception and throw a new one to be caught elsewhere from the |
| 3934 | catch clause: > |
| 3935 | |
| 3936 | :function! Foo() |
| 3937 | : throw "foo" |
| 3938 | :endfunction |
| 3939 | : |
| 3940 | :function! Bar() |
| 3941 | : try |
| 3942 | : call Foo() |
| 3943 | : catch /foo/ |
| 3944 | : echo "Caught foo, throw bar" |
| 3945 | : throw "bar" |
| 3946 | : endtry |
| 3947 | :endfunction |
| 3948 | : |
| 3949 | :try |
| 3950 | : call Bar() |
| 3951 | :catch /.*/ |
| 3952 | : echo "Caught" v:exception |
| 3953 | :endtry |
| 3954 | |
| 3955 | This displays "Caught foo, throw bar" and then "Caught bar". |
| 3956 | |
| 3957 | *rethrow* |
| 3958 | There is no real rethrow in the Vim script language, but you may throw |
| 3959 | "v:exception" instead: > |
| 3960 | |
| 3961 | :function! Bar() |
| 3962 | : try |
| 3963 | : call Foo() |
| 3964 | : catch /.*/ |
| 3965 | : echo "Rethrow" v:exception |
| 3966 | : throw v:exception |
| 3967 | : endtry |
| 3968 | :endfunction |
| 3969 | < *try-echoerr* |
| 3970 | Note that this method cannot be used to "rethrow" Vim error or interrupt |
| 3971 | exceptions, because it is not possible to fake Vim internal exceptions. |
| 3972 | Trying so causes an error exception. You should throw your own exception |
| 3973 | denoting the situation. If you want to cause a Vim error exception containing |
| 3974 | the original error exception value, you can use the |:echoerr| command: > |
| 3975 | |
| 3976 | :try |
| 3977 | : try |
| 3978 | : asdf |
| 3979 | : catch /.*/ |
| 3980 | : echoerr v:exception |
| 3981 | : endtry |
| 3982 | :catch /.*/ |
| 3983 | : echo v:exception |
| 3984 | :endtry |
| 3985 | |
| 3986 | This code displays |
| 3987 | |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 3988 | Vim(echoerr):Vim:E492: Not an editor command: asdf ~ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3989 | |
| 3990 | |
| 3991 | CLEANUP CODE *try-finally* |
| 3992 | |
| 3993 | Scripts often change global settings and restore them at their end. If the |
| 3994 | user however interrupts the script by pressing CTRL-C, the settings remain in |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 3995 | an inconsistent state. The same may happen to you in the development phase of |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3996 | a script when an error occurs or you explicitly throw an exception without |
| 3997 | catching it. You can solve these problems by using a try conditional with |
| 3998 | a finally clause for restoring the settings. Its execution is guaranteed on |
| 3999 | normal control flow, on error, on an explicit ":throw", and on interrupt. |
| 4000 | (Note that errors and interrupts from inside the try conditional are converted |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 4001 | to exceptions. When not caught, they terminate the script after the finally |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4002 | clause has been executed.) |
| 4003 | Example: > |
| 4004 | |
| 4005 | :try |
| 4006 | : let s:saved_ts = &ts |
| 4007 | : set ts=17 |
| 4008 | : |
| 4009 | : " Do the hard work here. |
| 4010 | : |
| 4011 | :finally |
| 4012 | : let &ts = s:saved_ts |
| 4013 | : unlet s:saved_ts |
| 4014 | :endtry |
| 4015 | |
| 4016 | This method should be used locally whenever a function or part of a script |
| 4017 | changes global settings which need to be restored on failure or normal exit of |
| 4018 | that function or script part. |
| 4019 | |
| 4020 | *break-finally* |
| 4021 | Cleanup code works also when the try block or a catch clause is left by |
| 4022 | a ":continue", ":break", ":return", or ":finish". |
| 4023 | Example: > |
| 4024 | |
| 4025 | :let first = 1 |
| 4026 | :while 1 |
| 4027 | : try |
| 4028 | : if first |
| 4029 | : echo "first" |
| 4030 | : let first = 0 |
| 4031 | : continue |
| 4032 | : else |
| 4033 | : throw "second" |
| 4034 | : endif |
| 4035 | : catch /.*/ |
| 4036 | : echo v:exception |
| 4037 | : break |
| 4038 | : finally |
| 4039 | : echo "cleanup" |
| 4040 | : endtry |
| 4041 | : echo "still in while" |
| 4042 | :endwhile |
| 4043 | :echo "end" |
| 4044 | |
| 4045 | This displays "first", "cleanup", "second", "cleanup", and "end". > |
| 4046 | |
| 4047 | :function! Foo() |
| 4048 | : try |
| 4049 | : return 4711 |
| 4050 | : finally |
| 4051 | : echo "cleanup\n" |
| 4052 | : endtry |
| 4053 | : echo "Foo still active" |
| 4054 | :endfunction |
| 4055 | : |
| 4056 | :echo Foo() "returned by Foo" |
| 4057 | |
| 4058 | This displays "cleanup" and "4711 returned by Foo". You don't need to add an |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 4059 | extra ":return" in the finally clause. (Above all, this would override the |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4060 | return value.) |
| 4061 | |
| 4062 | *except-from-finally* |
| 4063 | Using either of ":continue", ":break", ":return", ":finish", or ":throw" in |
| 4064 | a finally clause is possible, but not recommended since it abandons the |
| 4065 | cleanup actions for the try conditional. But, of course, interrupt and error |
| 4066 | exceptions might get raised from a finally clause. |
| 4067 | Example where an error in the finally clause stops an interrupt from |
| 4068 | working correctly: > |
| 4069 | |
| 4070 | :try |
| 4071 | : try |
| 4072 | : echo "Press CTRL-C for interrupt" |
| 4073 | : while 1 |
| 4074 | : endwhile |
| 4075 | : finally |
| 4076 | : unlet novar |
| 4077 | : endtry |
| 4078 | :catch /novar/ |
| 4079 | :endtry |
| 4080 | :echo "Script still running" |
| 4081 | :sleep 1 |
| 4082 | |
| 4083 | If you need to put commands that could fail into a finally clause, you should |
| 4084 | think about catching or ignoring the errors in these commands, see |
| 4085 | |catch-errors| and |ignore-errors|. |
| 4086 | |
| 4087 | |
| 4088 | CATCHING ERRORS *catch-errors* |
| 4089 | |
| 4090 | If you want to catch specific errors, you just have to put the code to be |
| 4091 | watched in a try block and add a catch clause for the error message. The |
| 4092 | presence of the try conditional causes all errors to be converted to an |
| 4093 | exception. No message is displayed and |v:errmsg| is not set then. To find |
| 4094 | the right pattern for the ":catch" command, you have to know how the format of |
| 4095 | the error exception is. |
| 4096 | Error exceptions have the following format: > |
| 4097 | |
| 4098 | Vim({cmdname}):{errmsg} |
| 4099 | or > |
| 4100 | Vim:{errmsg} |
| 4101 | |
| 4102 | {cmdname} is the name of the command that failed; the second form is used when |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 4103 | the command name is not known. {errmsg} is the error message usually produced |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4104 | when the error occurs outside try conditionals. It always begins with |
| 4105 | a capital "E", followed by a two or three-digit error number, a colon, and |
| 4106 | a space. |
| 4107 | |
| 4108 | Examples: |
| 4109 | |
| 4110 | The command > |
| 4111 | :unlet novar |
| 4112 | normally produces the error message > |
| 4113 | E108: No such variable: "novar" |
| 4114 | which is converted inside try conditionals to an exception > |
| 4115 | Vim(unlet):E108: No such variable: "novar" |
| 4116 | |
| 4117 | The command > |
| 4118 | :dwim |
| 4119 | normally produces the error message > |
| 4120 | E492: Not an editor command: dwim |
| 4121 | which is converted inside try conditionals to an exception > |
| 4122 | Vim:E492: Not an editor command: dwim |
| 4123 | |
| 4124 | You can catch all ":unlet" errors by a > |
| 4125 | :catch /^Vim(unlet):/ |
| 4126 | or all errors for misspelled command names by a > |
| 4127 | :catch /^Vim:E492:/ |
| 4128 | |
| 4129 | Some error messages may be produced by different commands: > |
| 4130 | :function nofunc |
| 4131 | and > |
| 4132 | :delfunction nofunc |
| 4133 | both produce the error message > |
| 4134 | E128: Function name must start with a capital: nofunc |
| 4135 | which is converted inside try conditionals to an exception > |
| 4136 | Vim(function):E128: Function name must start with a capital: nofunc |
| 4137 | or > |
| 4138 | Vim(delfunction):E128: Function name must start with a capital: nofunc |
| 4139 | respectively. You can catch the error by its number independently on the |
| 4140 | command that caused it if you use the following pattern: > |
| 4141 | :catch /^Vim(\a\+):E128:/ |
| 4142 | |
| 4143 | Some commands like > |
| 4144 | :let x = novar |
| 4145 | produce multiple error messages, here: > |
| 4146 | E121: Undefined variable: novar |
| 4147 | E15: Invalid expression: novar |
| 4148 | Only the first is used for the exception value, since it is the most specific |
| 4149 | one (see |except-several-errors|). So you can catch it by > |
| 4150 | :catch /^Vim(\a\+):E121:/ |
| 4151 | |
| 4152 | You can catch all errors related to the name "nofunc" by > |
| 4153 | :catch /\<nofunc\>/ |
| 4154 | |
| 4155 | You can catch all Vim errors in the ":write" and ":read" commands by > |
| 4156 | :catch /^Vim(\(write\|read\)):E\d\+:/ |
| 4157 | |
| 4158 | You can catch all Vim errors by the pattern > |
| 4159 | :catch /^Vim\((\a\+)\)\=:E\d\+:/ |
| 4160 | < |
| 4161 | *catch-text* |
| 4162 | NOTE: You should never catch the error message text itself: > |
| 4163 | :catch /No such variable/ |
Bram Moolenaar | 2b8388b | 2015-02-28 13:11:45 +0100 | [diff] [blame] | 4164 | only works in the English locale, but not when the user has selected |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4165 | a different language by the |:language| command. It is however helpful to |
| 4166 | cite the message text in a comment: > |
| 4167 | :catch /^Vim(\a\+):E108:/ " No such variable |
| 4168 | |
| 4169 | |
| 4170 | IGNORING ERRORS *ignore-errors* |
| 4171 | |
| 4172 | You can ignore errors in a specific Vim command by catching them locally: > |
| 4173 | |
| 4174 | :try |
| 4175 | : write |
| 4176 | :catch |
| 4177 | :endtry |
| 4178 | |
| 4179 | But you are strongly recommended NOT to use this simple form, since it could |
| 4180 | catch more than you want. With the ":write" command, some autocommands could |
| 4181 | be executed and cause errors not related to writing, for instance: > |
| 4182 | |
| 4183 | :au BufWritePre * unlet novar |
| 4184 | |
| 4185 | There could even be such errors you are not responsible for as a script |
| 4186 | writer: a user of your script might have defined such autocommands. You would |
| 4187 | then hide the error from the user. |
| 4188 | It is much better to use > |
| 4189 | |
| 4190 | :try |
| 4191 | : write |
| 4192 | :catch /^Vim(write):/ |
| 4193 | :endtry |
| 4194 | |
| 4195 | which only catches real write errors. So catch only what you'd like to ignore |
| 4196 | intentionally. |
| 4197 | |
| 4198 | For a single command that does not cause execution of autocommands, you could |
| 4199 | even suppress the conversion of errors to exceptions by the ":silent!" |
| 4200 | command: > |
| 4201 | :silent! nunmap k |
| 4202 | This works also when a try conditional is active. |
| 4203 | |
| 4204 | |
| 4205 | CATCHING INTERRUPTS *catch-interrupt* |
| 4206 | |
| 4207 | When there are active try conditionals, an interrupt (CTRL-C) is converted to |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 4208 | the exception "Vim:Interrupt". You can catch it like every exception. The |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4209 | script is not terminated, then. |
| 4210 | Example: > |
| 4211 | |
| 4212 | :function! TASK1() |
| 4213 | : sleep 10 |
| 4214 | :endfunction |
| 4215 | |
| 4216 | :function! TASK2() |
| 4217 | : sleep 20 |
| 4218 | :endfunction |
| 4219 | |
| 4220 | :while 1 |
| 4221 | : let command = input("Type a command: ") |
| 4222 | : try |
| 4223 | : if command == "" |
| 4224 | : continue |
| 4225 | : elseif command == "END" |
| 4226 | : break |
| 4227 | : elseif command == "TASK1" |
| 4228 | : call TASK1() |
| 4229 | : elseif command == "TASK2" |
| 4230 | : call TASK2() |
| 4231 | : else |
| 4232 | : echo "\nIllegal command:" command |
| 4233 | : continue |
| 4234 | : endif |
| 4235 | : catch /^Vim:Interrupt$/ |
| 4236 | : echo "\nCommand interrupted" |
| 4237 | : " Caught the interrupt. Continue with next prompt. |
| 4238 | : endtry |
| 4239 | :endwhile |
| 4240 | |
| 4241 | You can interrupt a task here by pressing CTRL-C; the script then asks for |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 4242 | a new command. If you press CTRL-C at the prompt, the script is terminated. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4243 | |
| 4244 | For testing what happens when CTRL-C would be pressed on a specific line in |
| 4245 | your script, use the debug mode and execute the |>quit| or |>interrupt| |
| 4246 | command on that line. See |debug-scripts|. |
| 4247 | |
| 4248 | |
| 4249 | CATCHING ALL *catch-all* |
| 4250 | |
| 4251 | The commands > |
| 4252 | |
| 4253 | :catch /.*/ |
| 4254 | :catch // |
| 4255 | :catch |
| 4256 | |
| 4257 | catch everything, error exceptions, interrupt exceptions and exceptions |
| 4258 | explicitly thrown by the |:throw| command. This is useful at the top level of |
| 4259 | a script in order to catch unexpected things. |
| 4260 | Example: > |
| 4261 | |
| 4262 | :try |
| 4263 | : |
| 4264 | : " do the hard work here |
| 4265 | : |
| 4266 | :catch /MyException/ |
| 4267 | : |
| 4268 | : " handle known problem |
| 4269 | : |
| 4270 | :catch /^Vim:Interrupt$/ |
| 4271 | : echo "Script interrupted" |
| 4272 | :catch /.*/ |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 4273 | : echo "Internal error (" .. v:exception .. ")" |
| 4274 | : echo " - occurred at " .. v:throwpoint |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4275 | :endtry |
| 4276 | :" end of script |
| 4277 | |
| 4278 | Note: Catching all might catch more things than you want. Thus, you are |
| 4279 | strongly encouraged to catch only for problems that you can really handle by |
| 4280 | specifying a pattern argument to the ":catch". |
| 4281 | Example: Catching all could make it nearly impossible to interrupt a script |
| 4282 | by pressing CTRL-C: > |
| 4283 | |
| 4284 | :while 1 |
| 4285 | : try |
| 4286 | : sleep 1 |
| 4287 | : catch |
| 4288 | : endtry |
| 4289 | :endwhile |
| 4290 | |
| 4291 | |
| 4292 | EXCEPTIONS AND AUTOCOMMANDS *except-autocmd* |
| 4293 | |
| 4294 | Exceptions may be used during execution of autocommands. Example: > |
| 4295 | |
| 4296 | :autocmd User x try |
| 4297 | :autocmd User x throw "Oops!" |
| 4298 | :autocmd User x catch |
| 4299 | :autocmd User x echo v:exception |
| 4300 | :autocmd User x endtry |
| 4301 | :autocmd User x throw "Arrgh!" |
| 4302 | :autocmd User x echo "Should not be displayed" |
| 4303 | : |
| 4304 | :try |
| 4305 | : doautocmd User x |
| 4306 | :catch |
| 4307 | : echo v:exception |
| 4308 | :endtry |
| 4309 | |
| 4310 | This displays "Oops!" and "Arrgh!". |
| 4311 | |
| 4312 | *except-autocmd-Pre* |
| 4313 | For some commands, autocommands get executed before the main action of the |
| 4314 | command takes place. If an exception is thrown and not caught in the sequence |
| 4315 | of autocommands, the sequence and the command that caused its execution are |
| 4316 | abandoned and the exception is propagated to the caller of the command. |
| 4317 | Example: > |
| 4318 | |
| 4319 | :autocmd BufWritePre * throw "FAIL" |
| 4320 | :autocmd BufWritePre * echo "Should not be displayed" |
| 4321 | : |
| 4322 | :try |
| 4323 | : write |
| 4324 | :catch |
| 4325 | : echo "Caught:" v:exception "from" v:throwpoint |
| 4326 | :endtry |
| 4327 | |
| 4328 | Here, the ":write" command does not write the file currently being edited (as |
| 4329 | you can see by checking 'modified'), since the exception from the BufWritePre |
| 4330 | autocommand abandons the ":write". The exception is then caught and the |
| 4331 | script displays: > |
| 4332 | |
| 4333 | Caught: FAIL from BufWrite Auto commands for "*" |
| 4334 | < |
| 4335 | *except-autocmd-Post* |
| 4336 | For some commands, autocommands get executed after the main action of the |
| 4337 | command has taken place. If this main action fails and the command is inside |
| 4338 | an active try conditional, the autocommands are skipped and an error exception |
| 4339 | is thrown that can be caught by the caller of the command. |
| 4340 | Example: > |
| 4341 | |
| 4342 | :autocmd BufWritePost * echo "File successfully written!" |
| 4343 | : |
| 4344 | :try |
| 4345 | : write /i/m/p/o/s/s/i/b/l/e |
| 4346 | :catch |
| 4347 | : echo v:exception |
| 4348 | :endtry |
| 4349 | |
| 4350 | This just displays: > |
| 4351 | |
| 4352 | Vim(write):E212: Can't open file for writing (/i/m/p/o/s/s/i/b/l/e) |
| 4353 | |
| 4354 | If you really need to execute the autocommands even when the main action |
| 4355 | fails, trigger the event from the catch clause. |
| 4356 | Example: > |
| 4357 | |
| 4358 | :autocmd BufWritePre * set noreadonly |
| 4359 | :autocmd BufWritePost * set readonly |
| 4360 | : |
| 4361 | :try |
| 4362 | : write /i/m/p/o/s/s/i/b/l/e |
| 4363 | :catch |
| 4364 | : doautocmd BufWritePost /i/m/p/o/s/s/i/b/l/e |
| 4365 | :endtry |
| 4366 | < |
| 4367 | You can also use ":silent!": > |
| 4368 | |
| 4369 | :let x = "ok" |
| 4370 | :let v:errmsg = "" |
| 4371 | :autocmd BufWritePost * if v:errmsg != "" |
| 4372 | :autocmd BufWritePost * let x = "after fail" |
| 4373 | :autocmd BufWritePost * endif |
| 4374 | :try |
| 4375 | : silent! write /i/m/p/o/s/s/i/b/l/e |
| 4376 | :catch |
| 4377 | :endtry |
| 4378 | :echo x |
| 4379 | |
| 4380 | This displays "after fail". |
| 4381 | |
| 4382 | If the main action of the command does not fail, exceptions from the |
| 4383 | autocommands will be catchable by the caller of the command: > |
| 4384 | |
| 4385 | :autocmd BufWritePost * throw ":-(" |
| 4386 | :autocmd BufWritePost * echo "Should not be displayed" |
| 4387 | : |
| 4388 | :try |
| 4389 | : write |
| 4390 | :catch |
| 4391 | : echo v:exception |
| 4392 | :endtry |
| 4393 | < |
| 4394 | *except-autocmd-Cmd* |
| 4395 | For some commands, the normal action can be replaced by a sequence of |
| 4396 | autocommands. Exceptions from that sequence will be catchable by the caller |
| 4397 | of the command. |
| 4398 | Example: For the ":write" command, the caller cannot know whether the file |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 4399 | had actually been written when the exception occurred. You need to tell it in |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4400 | some way. > |
| 4401 | |
| 4402 | :if !exists("cnt") |
| 4403 | : let cnt = 0 |
| 4404 | : |
| 4405 | : autocmd BufWriteCmd * if &modified |
| 4406 | : autocmd BufWriteCmd * let cnt = cnt + 1 |
| 4407 | : autocmd BufWriteCmd * if cnt % 3 == 2 |
| 4408 | : autocmd BufWriteCmd * throw "BufWriteCmdError" |
| 4409 | : autocmd BufWriteCmd * endif |
| 4410 | : autocmd BufWriteCmd * write | set nomodified |
| 4411 | : autocmd BufWriteCmd * if cnt % 3 == 0 |
| 4412 | : autocmd BufWriteCmd * throw "BufWriteCmdError" |
| 4413 | : autocmd BufWriteCmd * endif |
| 4414 | : autocmd BufWriteCmd * echo "File successfully written!" |
| 4415 | : autocmd BufWriteCmd * endif |
| 4416 | :endif |
| 4417 | : |
| 4418 | :try |
| 4419 | : write |
| 4420 | :catch /^BufWriteCmdError$/ |
| 4421 | : if &modified |
| 4422 | : echo "Error on writing (file contents not changed)" |
| 4423 | : else |
| 4424 | : echo "Error after writing" |
| 4425 | : endif |
| 4426 | :catch /^Vim(write):/ |
| 4427 | : echo "Error on writing" |
| 4428 | :endtry |
| 4429 | |
| 4430 | When this script is sourced several times after making changes, it displays |
| 4431 | first > |
| 4432 | File successfully written! |
| 4433 | then > |
| 4434 | Error on writing (file contents not changed) |
| 4435 | then > |
| 4436 | Error after writing |
| 4437 | etc. |
| 4438 | |
| 4439 | *except-autocmd-ill* |
| 4440 | You cannot spread a try conditional over autocommands for different events. |
| 4441 | The following code is ill-formed: > |
| 4442 | |
| 4443 | :autocmd BufWritePre * try |
| 4444 | : |
| 4445 | :autocmd BufWritePost * catch |
| 4446 | :autocmd BufWritePost * echo v:exception |
| 4447 | :autocmd BufWritePost * endtry |
| 4448 | : |
| 4449 | :write |
| 4450 | |
| 4451 | |
| 4452 | EXCEPTION HIERARCHIES AND PARAMETERIZED EXCEPTIONS *except-hier-param* |
| 4453 | |
| 4454 | Some programming languages allow to use hierarchies of exception classes or to |
| 4455 | pass additional information with the object of an exception class. You can do |
| 4456 | similar things in Vim. |
| 4457 | In order to throw an exception from a hierarchy, just throw the complete |
| 4458 | class name with the components separated by a colon, for instance throw the |
| 4459 | string "EXCEPT:MATHERR:OVERFLOW" for an overflow in a mathematical library. |
| 4460 | When you want to pass additional information with your exception class, add |
| 4461 | it in parentheses, for instance throw the string "EXCEPT:IO:WRITEERR(myfile)" |
| 4462 | for an error when writing "myfile". |
| 4463 | With the appropriate patterns in the ":catch" command, you can catch for |
| 4464 | base classes or derived classes of your hierarchy. Additional information in |
| 4465 | parentheses can be cut out from |v:exception| with the ":substitute" command. |
| 4466 | Example: > |
| 4467 | |
| 4468 | :function! CheckRange(a, func) |
| 4469 | : if a:a < 0 |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 4470 | : throw "EXCEPT:MATHERR:RANGE(" .. a:func .. ")" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4471 | : endif |
| 4472 | :endfunction |
| 4473 | : |
| 4474 | :function! Add(a, b) |
| 4475 | : call CheckRange(a:a, "Add") |
| 4476 | : call CheckRange(a:b, "Add") |
| 4477 | : let c = a:a + a:b |
| 4478 | : if c < 0 |
| 4479 | : throw "EXCEPT:MATHERR:OVERFLOW" |
| 4480 | : endif |
| 4481 | : return c |
| 4482 | :endfunction |
| 4483 | : |
| 4484 | :function! Div(a, b) |
| 4485 | : call CheckRange(a:a, "Div") |
| 4486 | : call CheckRange(a:b, "Div") |
| 4487 | : if (a:b == 0) |
| 4488 | : throw "EXCEPT:MATHERR:ZERODIV" |
| 4489 | : endif |
| 4490 | : return a:a / a:b |
| 4491 | :endfunction |
| 4492 | : |
| 4493 | :function! Write(file) |
| 4494 | : try |
Bram Moolenaar | 446cb83 | 2008-06-24 21:56:24 +0000 | [diff] [blame] | 4495 | : execute "write" fnameescape(a:file) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4496 | : catch /^Vim(write):/ |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 4497 | : throw "EXCEPT:IO(" .. getcwd() .. ", " .. a:file .. "):WRITEERR" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4498 | : endtry |
| 4499 | :endfunction |
| 4500 | : |
| 4501 | :try |
| 4502 | : |
Bram Moolenaar | 75ab590 | 2022-04-18 15:36:40 +0100 | [diff] [blame] | 4503 | : " something with arithmetic and I/O |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4504 | : |
| 4505 | :catch /^EXCEPT:MATHERR:RANGE/ |
| 4506 | : let function = substitute(v:exception, '.*(\(\a\+\)).*', '\1', "") |
| 4507 | : echo "Range error in" function |
| 4508 | : |
| 4509 | :catch /^EXCEPT:MATHERR/ " catches OVERFLOW and ZERODIV |
| 4510 | : echo "Math error" |
| 4511 | : |
| 4512 | :catch /^EXCEPT:IO/ |
| 4513 | : let dir = substitute(v:exception, '.*(\(.\+\),\s*.\+).*', '\1', "") |
| 4514 | : let file = substitute(v:exception, '.*(.\+,\s*\(.\+\)).*', '\1', "") |
| 4515 | : if file !~ '^/' |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 4516 | : let file = dir .. "/" .. file |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4517 | : endif |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 4518 | : echo 'I/O error for "' .. file .. '"' |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4519 | : |
| 4520 | :catch /^EXCEPT/ |
| 4521 | : echo "Unspecified error" |
| 4522 | : |
| 4523 | :endtry |
| 4524 | |
| 4525 | The exceptions raised by Vim itself (on error or when pressing CTRL-C) use |
| 4526 | a flat hierarchy: they are all in the "Vim" class. You cannot throw yourself |
| 4527 | exceptions with the "Vim" prefix; they are reserved for Vim. |
| 4528 | Vim error exceptions are parameterized with the name of the command that |
| 4529 | failed, if known. See |catch-errors|. |
| 4530 | |
| 4531 | |
| 4532 | PECULIARITIES |
| 4533 | *except-compat* |
| 4534 | The exception handling concept requires that the command sequence causing the |
| 4535 | exception is aborted immediately and control is transferred to finally clauses |
| 4536 | and/or a catch clause. |
| 4537 | |
| 4538 | In the Vim script language there are cases where scripts and functions |
| 4539 | continue after an error: in functions without the "abort" flag or in a command |
| 4540 | after ":silent!", control flow goes to the following line, and outside |
| 4541 | functions, control flow goes to the line following the outermost ":endwhile" |
| 4542 | or ":endif". On the other hand, errors should be catchable as exceptions |
| 4543 | (thus, requiring the immediate abortion). |
| 4544 | |
| 4545 | This problem has been solved by converting errors to exceptions and using |
| 4546 | immediate abortion (if not suppressed by ":silent!") only when a try |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 4547 | conditional is active. This is no restriction since an (error) exception can |
| 4548 | be caught only from an active try conditional. If you want an immediate |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4549 | termination without catching the error, just use a try conditional without |
| 4550 | catch clause. (You can cause cleanup code being executed before termination |
| 4551 | by specifying a finally clause.) |
| 4552 | |
| 4553 | When no try conditional is active, the usual abortion and continuation |
| 4554 | behavior is used instead of immediate abortion. This ensures compatibility of |
| 4555 | scripts written for Vim 6.1 and earlier. |
| 4556 | |
| 4557 | However, when sourcing an existing script that does not use exception handling |
| 4558 | commands (or when calling one of its functions) from inside an active try |
| 4559 | conditional of a new script, you might change the control flow of the existing |
| 4560 | script on error. You get the immediate abortion on error and can catch the |
| 4561 | error in the new script. If however the sourced script suppresses error |
| 4562 | messages by using the ":silent!" command (checking for errors by testing |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 4563 | |v:errmsg| if appropriate), its execution path is not changed. The error is |
| 4564 | not converted to an exception. (See |:silent|.) So the only remaining cause |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4565 | where this happens is for scripts that don't care about errors and produce |
| 4566 | error messages. You probably won't want to use such code from your new |
| 4567 | scripts. |
| 4568 | |
| 4569 | *except-syntax-err* |
| 4570 | Syntax errors in the exception handling commands are never caught by any of |
| 4571 | the ":catch" commands of the try conditional they belong to. Its finally |
| 4572 | clauses, however, is executed. |
| 4573 | Example: > |
| 4574 | |
| 4575 | :try |
| 4576 | : try |
| 4577 | : throw 4711 |
| 4578 | : catch /\(/ |
| 4579 | : echo "in catch with syntax error" |
| 4580 | : catch |
| 4581 | : echo "inner catch-all" |
| 4582 | : finally |
| 4583 | : echo "inner finally" |
| 4584 | : endtry |
| 4585 | :catch |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 4586 | : echo 'outer catch-all caught "' .. v:exception .. '"' |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4587 | : finally |
| 4588 | : echo "outer finally" |
| 4589 | :endtry |
| 4590 | |
| 4591 | This displays: > |
| 4592 | inner finally |
| 4593 | outer catch-all caught "Vim(catch):E54: Unmatched \(" |
| 4594 | outer finally |
| 4595 | The original exception is discarded and an error exception is raised, instead. |
| 4596 | |
| 4597 | *except-single-line* |
| 4598 | The ":try", ":catch", ":finally", and ":endtry" commands can be put on |
| 4599 | a single line, but then syntax errors may make it difficult to recognize the |
| 4600 | "catch" line, thus you better avoid this. |
| 4601 | Example: > |
| 4602 | :try | unlet! foo # | catch | endtry |
| 4603 | raises an error exception for the trailing characters after the ":unlet!" |
| 4604 | argument, but does not see the ":catch" and ":endtry" commands, so that the |
| 4605 | error exception is discarded and the "E488: Trailing characters" message gets |
| 4606 | displayed. |
| 4607 | |
| 4608 | *except-several-errors* |
| 4609 | When several errors appear in a single command, the first error message is |
Bram Moolenaar | 53f7fcc | 2021-07-28 20:10:16 +0200 | [diff] [blame] | 4610 | usually the most specific one and therefore converted to the error exception. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4611 | Example: > |
| 4612 | echo novar |
| 4613 | causes > |
| 4614 | E121: Undefined variable: novar |
| 4615 | E15: Invalid expression: novar |
| 4616 | The value of the error exception inside try conditionals is: > |
| 4617 | Vim(echo):E121: Undefined variable: novar |
| 4618 | < *except-syntax-error* |
| 4619 | But when a syntax error is detected after a normal error in the same command, |
| 4620 | the syntax error is used for the exception being thrown. |
| 4621 | Example: > |
| 4622 | unlet novar # |
| 4623 | causes > |
| 4624 | E108: No such variable: "novar" |
| 4625 | E488: Trailing characters |
| 4626 | The value of the error exception inside try conditionals is: > |
| 4627 | Vim(unlet):E488: Trailing characters |
| 4628 | This is done because the syntax error might change the execution path in a way |
| 4629 | not intended by the user. Example: > |
| 4630 | try |
| 4631 | try | unlet novar # | catch | echo v:exception | endtry |
| 4632 | catch /.*/ |
| 4633 | echo "outer catch:" v:exception |
| 4634 | endtry |
| 4635 | This displays "outer catch: Vim(unlet):E488: Trailing characters", and then |
| 4636 | a "E600: Missing :endtry" error message is given, see |except-single-line|. |
| 4637 | |
| 4638 | ============================================================================== |
| 4639 | 9. Examples *eval-examples* |
| 4640 | |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 4641 | Printing in Binary ~ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4642 | > |
Bram Moolenaar | 8f3f58f | 2010-01-06 20:52:26 +0100 | [diff] [blame] | 4643 | :" The function Nr2Bin() returns the binary string representation of a number. |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 4644 | :func Nr2Bin(nr) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4645 | : let n = a:nr |
| 4646 | : let r = "" |
| 4647 | : while n |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 4648 | : let r = '01'[n % 2] .. r |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 4649 | : let n = n / 2 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4650 | : endwhile |
| 4651 | : return r |
| 4652 | :endfunc |
| 4653 | |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 4654 | :" The function String2Bin() converts each character in a string to a |
| 4655 | :" binary string, separated with dashes. |
| 4656 | :func String2Bin(str) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4657 | : let out = '' |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 4658 | : for ix in range(strlen(a:str)) |
Bram Moolenaar | c51cf03 | 2022-02-26 12:25:45 +0000 | [diff] [blame] | 4659 | : let out = out .. '-' .. Nr2Bin(char2nr(a:str[ix])) |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 4660 | : endfor |
| 4661 | : return out[1:] |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4662 | :endfunc |
| 4663 | |
| 4664 | Example of its use: > |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 4665 | :echo Nr2Bin(32) |
| 4666 | result: "100000" > |
| 4667 | :echo String2Bin("32") |
| 4668 | result: "110011-110010" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4669 | |
| 4670 | |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 4671 | Sorting lines ~ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4672 | |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 4673 | This example sorts lines with a specific compare function. > |
| 4674 | |
| 4675 | :func SortBuffer() |
| 4676 | : let lines = getline(1, '$') |
| 4677 | : call sort(lines, function("Strcmp")) |
| 4678 | : call setline(1, lines) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4679 | :endfunction |
| 4680 | |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 4681 | As a one-liner: > |
| 4682 | :call setline(1, sort(getline(1, '$'), function("Strcmp"))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4683 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4684 | |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 4685 | scanf() replacement ~ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4686 | *sscanf* |
| 4687 | There is no sscanf() function in Vim. If you need to extract parts from a |
| 4688 | line, you can use matchstr() and substitute() to do it. This example shows |
| 4689 | how to get the file name, line number and column number out of a line like |
| 4690 | "foobar.txt, 123, 45". > |
| 4691 | :" Set up the match bit |
| 4692 | :let mx='\(\f\+\),\s*\(\d\+\),\s*\(\d\+\)' |
| 4693 | :"get the part matching the whole expression |
| 4694 | :let l = matchstr(line, mx) |
| 4695 | :"get each item out of the match |
| 4696 | :let file = substitute(l, mx, '\1', '') |
| 4697 | :let lnum = substitute(l, mx, '\2', '') |
| 4698 | :let col = substitute(l, mx, '\3', '') |
| 4699 | |
| 4700 | The input is in the variable "line", the results in the variables "file", |
| 4701 | "lnum" and "col". (idea from Michael Geddes) |
| 4702 | |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 4703 | |
| 4704 | getting the scriptnames in a Dictionary ~ |
| 4705 | *scriptnames-dictionary* |
Bram Moolenaar | dd60c36 | 2023-02-27 15:49:53 +0000 | [diff] [blame] | 4706 | The `:scriptnames` command can be used to get a list of all script files that |
| 4707 | have been sourced. There is also the `getscriptinfo()` function, but the |
| 4708 | information returned is not exactly the same. In case you need to manipulate |
Bram Moolenaar | 71badf9 | 2023-04-22 22:40:14 +0100 | [diff] [blame] | 4709 | the list, this code can be used as a base: > |
Bram Moolenaar | b0d45e7 | 2017-11-05 18:19:24 +0100 | [diff] [blame] | 4710 | |
Bram Moolenaar | 71badf9 | 2023-04-22 22:40:14 +0100 | [diff] [blame] | 4711 | # Create or update scripts dictionary, indexed by SNR, and return it. |
| 4712 | def Scripts(scripts: dict<string> = {}): dict<string> |
| 4713 | for info in getscriptinfo() |
| 4714 | if scripts->has_key(info.sid) |
| 4715 | continue |
| 4716 | endif |
| 4717 | scripts[info.sid] = info.name |
| 4718 | endfor |
| 4719 | return scripts |
| 4720 | enddef |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 4721 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4722 | ============================================================================== |
Bram Moolenaar | 558ca4a | 2019-04-04 18:15:38 +0200 | [diff] [blame] | 4723 | 10. Vim script versions *vimscript-version* *vimscript-versions* |
Bram Moolenaar | 911ead1 | 2019-04-21 00:03:35 +0200 | [diff] [blame] | 4724 | *scriptversion* |
Bram Moolenaar | 558ca4a | 2019-04-04 18:15:38 +0200 | [diff] [blame] | 4725 | Over time many features have been added to Vim script. This includes Ex |
| 4726 | commands, functions, variable types, etc. Each individual feature can be |
| 4727 | checked with the |has()| and |exists()| functions. |
| 4728 | |
| 4729 | Sometimes old syntax of functionality gets in the way of making Vim better. |
| 4730 | When support is taken away this will break older Vim scripts. To make this |
| 4731 | explicit the |:scriptversion| command can be used. When a Vim script is not |
| 4732 | compatible with older versions of Vim this will give an explicit error, |
Bram Moolenaar | 3ff5f0f | 2019-06-10 13:11:22 +0200 | [diff] [blame] | 4733 | instead of failing in mysterious ways. |
Bram Moolenaar | 558ca4a | 2019-04-04 18:15:38 +0200 | [diff] [blame] | 4734 | |
Bram Moolenaar | a2baa73 | 2022-02-04 16:09:54 +0000 | [diff] [blame] | 4735 | When using a legacy function, defined with `:function`, in |Vim9| script then |
| 4736 | scriptversion 4 is used. |
| 4737 | |
Bram Moolenaar | 3ff5f0f | 2019-06-10 13:11:22 +0200 | [diff] [blame] | 4738 | *scriptversion-1* > |
Bram Moolenaar | 558ca4a | 2019-04-04 18:15:38 +0200 | [diff] [blame] | 4739 | :scriptversion 1 |
| 4740 | < This is the original Vim script, same as not using a |:scriptversion| |
| 4741 | command. Can be used to go back to old syntax for a range of lines. |
| 4742 | Test for support with: > |
| 4743 | has('vimscript-1') |
| 4744 | |
Bram Moolenaar | 3ff5f0f | 2019-06-10 13:11:22 +0200 | [diff] [blame] | 4745 | < *scriptversion-2* > |
Bram Moolenaar | 558ca4a | 2019-04-04 18:15:38 +0200 | [diff] [blame] | 4746 | :scriptversion 2 |
Bram Moolenaar | 68e6560 | 2019-05-26 21:33:31 +0200 | [diff] [blame] | 4747 | < String concatenation with "." is not supported, use ".." instead. |
Bram Moolenaar | 558ca4a | 2019-04-04 18:15:38 +0200 | [diff] [blame] | 4748 | This avoids the ambiguity using "." for Dict member access and |
| 4749 | floating point numbers. Now ".5" means the number 0.5. |
Bram Moolenaar | 3ff5f0f | 2019-06-10 13:11:22 +0200 | [diff] [blame] | 4750 | |
| 4751 | *scriptversion-3* > |
Bram Moolenaar | 911ead1 | 2019-04-21 00:03:35 +0200 | [diff] [blame] | 4752 | :scriptversion 3 |
| 4753 | < All |vim-variable|s must be prefixed by "v:". E.g. "version" doesn't |
| 4754 | work as |v:version| anymore, it can be used as a normal variable. |
| 4755 | Same for some obvious names as "count" and others. |
Bram Moolenaar | 558ca4a | 2019-04-04 18:15:38 +0200 | [diff] [blame] | 4756 | |
Bram Moolenaar | 911ead1 | 2019-04-21 00:03:35 +0200 | [diff] [blame] | 4757 | Test for support with: > |
| 4758 | has('vimscript-3') |
Bram Moolenaar | 60a8de2 | 2019-09-15 14:33:22 +0200 | [diff] [blame] | 4759 | < |
| 4760 | *scriptversion-4* > |
| 4761 | :scriptversion 4 |
Bram Moolenaar | c17e66c | 2020-06-02 21:38:22 +0200 | [diff] [blame] | 4762 | < Numbers with a leading zero are not recognized as octal. "0o" or "0O" |
| 4763 | is still recognized as octal. With the |
Bram Moolenaar | 60a8de2 | 2019-09-15 14:33:22 +0200 | [diff] [blame] | 4764 | previous version you get: > |
Bram Moolenaar | c17e66c | 2020-06-02 21:38:22 +0200 | [diff] [blame] | 4765 | echo 017 " displays 15 (octal) |
| 4766 | echo 0o17 " displays 15 (octal) |
| 4767 | echo 018 " displays 18 (decimal) |
Bram Moolenaar | 60a8de2 | 2019-09-15 14:33:22 +0200 | [diff] [blame] | 4768 | < with script version 4: > |
Bram Moolenaar | c17e66c | 2020-06-02 21:38:22 +0200 | [diff] [blame] | 4769 | echo 017 " displays 17 (decimal) |
| 4770 | echo 0o17 " displays 15 (octal) |
| 4771 | echo 018 " displays 18 (decimal) |
Bram Moolenaar | 60a8de2 | 2019-09-15 14:33:22 +0200 | [diff] [blame] | 4772 | < Also, it is possible to use single quotes inside numbers to make them |
| 4773 | easier to read: > |
| 4774 | echo 1'000'000 |
| 4775 | < The quotes must be surrounded by digits. |
| 4776 | |
| 4777 | Test for support with: > |
| 4778 | has('vimscript-4') |
Bram Moolenaar | 558ca4a | 2019-04-04 18:15:38 +0200 | [diff] [blame] | 4779 | |
| 4780 | ============================================================================== |
| 4781 | 11. No +eval feature *no-eval-feature* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4782 | |
| 4783 | When the |+eval| feature was disabled at compile time, none of the expression |
| 4784 | evaluation commands are available. To prevent this from causing Vim scripts |
| 4785 | to generate all kinds of errors, the ":if" and ":endif" commands are still |
| 4786 | recognized, though the argument of the ":if" and everything between the ":if" |
| 4787 | and the matching ":endif" is ignored. Nesting of ":if" blocks is allowed, but |
| 4788 | only if the commands are at the start of the line. The ":else" command is not |
| 4789 | recognized. |
| 4790 | |
| 4791 | Example of how to avoid executing commands when the |+eval| feature is |
| 4792 | missing: > |
| 4793 | |
| 4794 | :if 1 |
| 4795 | : echo "Expression evaluation is compiled in" |
| 4796 | :else |
| 4797 | : echo "You will _never_ see this message" |
| 4798 | :endif |
| 4799 | |
Bram Moolenaar | 773a97c | 2019-06-06 20:39:55 +0200 | [diff] [blame] | 4800 | To execute a command only when the |+eval| feature is disabled can be done in |
| 4801 | two ways. The simplest is to exit the script (or Vim) prematurely: > |
| 4802 | if 1 |
| 4803 | echo "commands executed with +eval" |
| 4804 | finish |
| 4805 | endif |
| 4806 | args " command executed without +eval |
| 4807 | |
| 4808 | If you do not want to abort loading the script you can use a trick, as this |
| 4809 | example shows: > |
Bram Moolenaar | 45d2cca | 2017-04-30 16:36:05 +0200 | [diff] [blame] | 4810 | |
| 4811 | silent! while 0 |
| 4812 | set history=111 |
| 4813 | silent! endwhile |
| 4814 | |
| 4815 | When the |+eval| feature is available the command is skipped because of the |
| 4816 | "while 0". Without the |+eval| feature the "while 0" is an error, which is |
| 4817 | silently ignored, and the command is executed. |
Bram Moolenaar | cd5c8f8 | 2017-04-09 20:11:58 +0200 | [diff] [blame] | 4818 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4819 | ============================================================================== |
Bram Moolenaar | 2f0936c | 2022-01-08 21:51:59 +0000 | [diff] [blame] | 4820 | 12. The sandbox *eval-sandbox* *sandbox* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4821 | |
Bram Moolenaar | 368373e | 2010-07-19 20:46:22 +0200 | [diff] [blame] | 4822 | The 'foldexpr', 'formatexpr', 'includeexpr', 'indentexpr', 'statusline' and |
| 4823 | 'foldtext' options may be evaluated in a sandbox. This means that you are |
| 4824 | protected from these expressions having nasty side effects. This gives some |
| 4825 | safety for when these options are set from a modeline. It is also used when |
| 4826 | the command from a tags file is executed and for CTRL-R = in the command line. |
Bram Moolenaar | 7b0294c | 2004-10-11 10:16:09 +0000 | [diff] [blame] | 4827 | The sandbox is also used for the |:sandbox| command. |
Bram Moolenaar | 2f0936c | 2022-01-08 21:51:59 +0000 | [diff] [blame] | 4828 | *E48* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4829 | These items are not allowed in the sandbox: |
| 4830 | - changing the buffer text |
Bram Moolenaar | b477af2 | 2018-07-15 20:20:18 +0200 | [diff] [blame] | 4831 | - defining or changing mapping, autocommands, user commands |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4832 | - setting certain options (see |option-summary|) |
Bram Moolenaar | ef2f656 | 2007-05-06 13:32:59 +0000 | [diff] [blame] | 4833 | - setting certain v: variables (see |v:var|) *E794* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4834 | - executing a shell command |
| 4835 | - reading or writing a file |
| 4836 | - jumping to another buffer or editing a file |
Bram Moolenaar | 4770d09 | 2006-01-12 23:22:24 +0000 | [diff] [blame] | 4837 | - executing Python, Perl, etc. commands |
Bram Moolenaar | 7b0294c | 2004-10-11 10:16:09 +0000 | [diff] [blame] | 4838 | This is not guaranteed 100% secure, but it should block most attacks. |
| 4839 | |
| 4840 | *:san* *:sandbox* |
Bram Moolenaar | 045e82d | 2005-07-08 22:25:33 +0000 | [diff] [blame] | 4841 | :san[dbox] {cmd} Execute {cmd} in the sandbox. Useful to evaluate an |
Bram Moolenaar | 7b0294c | 2004-10-11 10:16:09 +0000 | [diff] [blame] | 4842 | option that may have been set from a modeline, e.g. |
| 4843 | 'foldexpr'. |
| 4844 | |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 4845 | *sandbox-option* |
| 4846 | A few options contain an expression. When this expression is evaluated it may |
Bram Moolenaar | 9b2200a | 2006-03-20 21:55:45 +0000 | [diff] [blame] | 4847 | have to be done in the sandbox to avoid a security risk. But the sandbox is |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 4848 | restrictive, thus this only happens when the option was set from an insecure |
| 4849 | location. Insecure in this context are: |
Bram Moolenaar | 551dbcc | 2006-04-25 22:13:59 +0000 | [diff] [blame] | 4850 | - sourcing a .vimrc or .exrc in the current directory |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 4851 | - while executing in the sandbox |
| 4852 | - value coming from a modeline |
Bram Moolenaar | b477af2 | 2018-07-15 20:20:18 +0200 | [diff] [blame] | 4853 | - executing a function that was defined in the sandbox |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 4854 | |
| 4855 | Note that when in the sandbox and saving an option value and restoring it, the |
| 4856 | option will still be marked as it was set in the sandbox. |
| 4857 | |
| 4858 | ============================================================================== |
Bram Moolenaar | 558ca4a | 2019-04-04 18:15:38 +0200 | [diff] [blame] | 4859 | 13. Textlock *textlock* |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 4860 | |
| 4861 | In a few situations it is not allowed to change the text in the buffer, jump |
| 4862 | to another window and some other things that might confuse or break what Vim |
| 4863 | is currently doing. This mostly applies to things that happen when Vim is |
Bram Moolenaar | 58b8534 | 2016-08-14 19:54:54 +0200 | [diff] [blame] | 4864 | actually doing something else. For example, evaluating the 'balloonexpr' may |
Bram Moolenaar | b71eaae | 2006-01-20 23:10:18 +0000 | [diff] [blame] | 4865 | happen any moment the mouse cursor is resting at some position. |
| 4866 | |
| 4867 | This is not allowed when the textlock is active: |
| 4868 | - changing the buffer text |
| 4869 | - jumping to another buffer or window |
| 4870 | - editing another file |
| 4871 | - closing a window or quitting Vim |
| 4872 | - etc. |
| 4873 | |
Christian Brabandt | da4e433 | 2023-11-05 10:45:12 +0100 | [diff] [blame] | 4874 | ============================================================================== |
| 4875 | 14. Vim script library *vim-script-library* |
| 4876 | |
| 4877 | Vim comes bundled with a Vim script library, that can be used by runtime, |
| 4878 | script authors. Currently, it only includes very few functions, but it may |
| 4879 | grow over time. |
| 4880 | |
h_east | 596a9f2 | 2023-11-21 21:24:23 +0900 | [diff] [blame] | 4881 | The functions are available as |Vim9-script| as well as using legacy Vim |
Christian Brabandt | da4e433 | 2023-11-05 10:45:12 +0100 | [diff] [blame] | 4882 | script (to be used for non Vim 9.0 versions and Neovim). |
| 4883 | |
| 4884 | *dist#vim* *dist#vim9* |
h_east | 596a9f2 | 2023-11-21 21:24:23 +0900 | [diff] [blame] | 4885 | The functions make use of the autoloaded prefix "dist#vim" (for legacy Vim |
| 4886 | script and Neovim) and "dist#vim9" for Vim9 script. |
Christian Brabandt | da4e433 | 2023-11-05 10:45:12 +0100 | [diff] [blame] | 4887 | |
| 4888 | The following functions are available: |
| 4889 | |
| 4890 | dist#vim#IsSafeExecutable(filetype, executable) ~ |
| 4891 | dist#vim9#IsSafeExecutable(filetype:string, executable:string): bool ~ |
| 4892 | |
| 4893 | This function takes a filetype and an executable and checks whether it is safe |
| 4894 | to execute the given executable. For security reasons users may not want to |
| 4895 | have Vim execute random executables or may have forbidden to do so for |
| 4896 | specific filetypes by setting the "<filetype>_exec" variable (|plugin_exec|). |
| 4897 | |
| 4898 | It returns |true| or |false| to indicate whether the plugin should run the given |
zeertzjq | 61e984e | 2023-12-09 15:18:33 +0800 | [diff] [blame] | 4899 | executable. It takes the following arguments: |
Christian Brabandt | da4e433 | 2023-11-05 10:45:12 +0100 | [diff] [blame] | 4900 | |
| 4901 | argument type ~ |
| 4902 | |
| 4903 | filetype string |
| 4904 | executable string |
| 4905 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4906 | |
Bram Moolenaar | 91f84f6 | 2018-07-29 15:07:52 +0200 | [diff] [blame] | 4907 | vim:tw=78:ts=8:noet:ft=help:norl: |