blob: b21b7bfadce9449c14bd3c37a5aae7c764192a19 [file] [log] [blame]
Bram Moolenaar65c44152020-12-24 15:14:01 +01001*vim9.txt* For Vim version 8.2. Last change: 2020 Dec 24
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01002
3
4 VIM REFERENCE MANUAL by Bram Moolenaar
5
6
7THIS IS STILL UNDER DEVELOPMENT - ANYTHING CAN BREAK - ANYTHING CAN CHANGE
8
Bram Moolenaardcc58e02020-12-28 20:53:21 +01009Vim9 script commands and expressions. *Vim9* *vim9*
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010010
11Most expression help is in |eval.txt|. This file is about the new syntax and
12features in Vim9 script.
13
14THIS IS STILL UNDER DEVELOPMENT - ANYTHING CAN BREAK - ANYTHING CAN CHANGE
15
16
Bram Moolenaare7b1ea02020-08-07 19:54:59 +0200171. What is Vim9 script? |vim9-script|
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100182. Differences |vim9-differences|
193. New style functions |fast-functions|
204. Types |vim9-types|
215. Namespace, Import and Export |vim9script|
Bram Moolenaar1d59aa12020-09-19 18:50:13 +0200226. Future work: classes |vim9-classes|
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010023
249. Rationale |vim9-rationale|
25
26==============================================================================
27
Bram Moolenaar2b327002020-12-26 15:39:31 +0100281. What is Vim9 script? *Vim9-script*
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010029
30THIS IS STILL UNDER DEVELOPMENT - ANYTHING CAN BREAK - ANYTHING CAN CHANGE
31
Bram Moolenaar7ceefb32020-05-01 16:07:38 +020032Vim script has been growing over time, while preserving backwards
33compatibility. That means bad choices from the past often can't be changed
Bram Moolenaar73fef332020-06-21 22:12:03 +020034and compatibility with Vi restricts possible solutions. Execution is quite
Bram Moolenaar7ceefb32020-05-01 16:07:38 +020035slow, each line is parsed every time it is executed.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010036
Bram Moolenaar7ceefb32020-05-01 16:07:38 +020037The main goal of Vim9 script is to drastically improve performance. This is
38accomplished by compiling commands into instructions that can be efficiently
39executed. An increase in execution speed of 10 to 100 times can be expected.
40
41A secondary goal is to avoid Vim-specific constructs and get closer to
42commonly used programming languages, such as JavaScript, TypeScript and Java.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010043
44The performance improvements can only be achieved by not being 100% backwards
Bram Moolenaar388a5d42020-05-26 21:20:45 +020045compatible. For example, making function arguments available in the
46"a:" dictionary adds quite a lot of overhead. In a Vim9 function this
47dictionary is not available. Other differences are more subtle, such as how
48errors are handled.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010049
50The Vim9 script syntax and semantics are used in:
51- a function defined with the `:def` command
52- a script file where the first command is `vim9script`
Bram Moolenaar1d59aa12020-09-19 18:50:13 +020053- an autocommand defined in the context of the above
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010054
55When using `:function` in a Vim9 script file the legacy syntax is used.
Bram Moolenaar7ceefb32020-05-01 16:07:38 +020056However, this can be confusing and is therefore discouraged.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010057
Bram Moolenaar7ceefb32020-05-01 16:07:38 +020058Vim9 script and legacy Vim script can be mixed. There is no requirement to
Bram Moolenaar1d59aa12020-09-19 18:50:13 +020059rewrite old scripts, they keep working as before. You may want to use a few
60`:def` functions for code that needs to be fast.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010061
62==============================================================================
63
642. Differences from legacy Vim script *vim9-differences*
65
66THIS IS STILL UNDER DEVELOPMENT - ANYTHING CAN BREAK - ANYTHING CAN CHANGE
67
Bram Moolenaard58a3bf2020-09-28 21:48:16 +020068Overview ~
69
70Brief summary of the differences you will most often encounter when using Vim9
71script and `:def` functions; details are below:
72- Comments start with #, not ": >
73 echo "hello" # comment
74- Using a backslash for line continuation is hardly ever needed: >
75 echo "hello "
76 .. yourName
77 .. ", how are you?"
78- White space is required in many places.
79- Assign values without `:let`, declare variables with `:var`: >
80 var count = 0
81 count += 3
82- Constants can be declared with `:final` and `:const`: >
83 final matches = [] # add matches
84 const names = ['Betty', 'Peter'] # cannot be changed
85- `:final` cannot be used as an abbreviation of `:finally`.
86- Variables and functions are script-local by default.
87- Functions are declared with argument types and return type: >
88 def CallMe(count: number, message: string): bool
89- Call functions without `:call`: >
90 writefile(['done'], 'file.txt')
91- You cannot use `:xit`, `:t`, `:append`, `:change`, `:insert` or curly-braces
92 names.
93- A range before a command must be prefixed with a colon: >
94 :%s/this/that
95
96
Bram Moolenaar2c330432020-04-13 14:41:35 +020097Comments starting with # ~
98
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +020099In legacy Vim script comments start with double quote. In Vim9 script
100comments start with #. >
101 # declarations
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200102 var count = 0 # number of occurrences
Bram Moolenaar2c330432020-04-13 14:41:35 +0200103
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +0200104The reason is that a double quote can also be the start of a string. In many
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200105places, especially halfway through an expression with a line break, it's hard
106to tell what the meaning is, since both a string and a comment can be followed
107by arbitrary text. To avoid confusion only # comments are recognized. This
108is the same as in shell scripts and Python programs.
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +0200109
110In Vi # is a command to list text with numbers. In Vim9 script you can use
111`:number` for that. >
Bram Moolenaarae616492020-07-28 20:07:27 +0200112 101 number
Bram Moolenaarf5be8cd2020-07-17 20:36:00 +0200113
114To improve readability there must be a space between a command and the #
Bram Moolenaar2b327002020-12-26 15:39:31 +0100115that starts a comment: >
Bram Moolenaardcc58e02020-12-28 20:53:21 +0100116 var name = value # comment
117 var name = value# error!
Bram Moolenaar2b327002020-12-26 15:39:31 +0100118
Bram Moolenaardcc58e02020-12-28 20:53:21 +0100119In legacy Vim script # is also used for the alternate file name. In Vim9
120script you need to use %% instead. Instead of ## use %%% (stands for all
121arguments).
Bram Moolenaar2c7f8c52020-04-20 19:52:53 +0200122
Bram Moolenaar2c330432020-04-13 14:41:35 +0200123
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100124Vim9 functions ~
125
Bram Moolenaar7ceefb32020-05-01 16:07:38 +0200126A function defined with `:def` is compiled. Execution is many times faster,
127often 10x to 100x times.
128
Bram Moolenaar388a5d42020-05-26 21:20:45 +0200129Many errors are already found when compiling, before the function is executed.
Bram Moolenaar7ceefb32020-05-01 16:07:38 +0200130The syntax is strict, to enforce code that is easy to read and understand.
131
Bram Moolenaar1b884a02020-12-10 21:11:27 +0100132Compilation is done when either of these is encountered:
133- the first time the function is called
Bram Moolenaar207f0092020-08-30 17:20:20 +0200134- when the `:defcompile` command is encountered in the script where the
135 function was defined
136- `:disassemble` is used for the function.
137- a function that is compiled calls the function or uses it as a function
138 reference
Bram Moolenaar388a5d42020-05-26 21:20:45 +0200139
140`:def` has no options like `:function` does: "range", "abort", "dict" or
Bram Moolenaar1b884a02020-12-10 21:11:27 +0100141"closure". A `:def` function always aborts on an error (unless `:silent!` was
142used for the command or inside a `:try` block), does not get a range passed
Bram Moolenaar4072ba52020-12-23 13:56:35 +0100143cannot be a "dict" function, and can always be a closure.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100144
Bram Moolenaar7ceefb32020-05-01 16:07:38 +0200145The argument types and return type need to be specified. The "any" type can
146be used, type checking will then be done at runtime, like with legacy
147functions.
148
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200149Arguments are accessed by name, without "a:", just like any other language.
150There is no "a:" dictionary or "a:000" list.
Bram Moolenaar7ceefb32020-05-01 16:07:38 +0200151
152Variable arguments are defined as the last argument, with a name and have a
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200153list type, similar to TypeScript. For example, a list of numbers: >
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200154 def MyFunc(...itemlist: list<number>)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100155 for item in itemlist
156 ...
157
158
Bram Moolenaar7ceefb32020-05-01 16:07:38 +0200159Functions and variables are script-local by default ~
Bram Moolenaar65e0d772020-06-14 17:29:55 +0200160 *vim9-scopes*
Bram Moolenaar2c7f8c52020-04-20 19:52:53 +0200161When using `:function` or `:def` to specify a new function at the script level
162in a Vim9 script, the function is local to the script, as if "s:" was
Bram Moolenaar2bb26582020-10-03 22:52:39 +0200163prefixed. Using the "s:" prefix is optional. To define a global function or
164variable the "g:" prefix must be used. For functions in an autoload script
165the "name#" prefix is sufficient. >
Bram Moolenaarea2d8d22020-07-29 22:11:05 +0200166 def ThisFunction() # script-local
167 def s:ThisFunction() # script-local
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200168 def g:ThatFunction() # global
Bram Moolenaarea2d8d22020-07-29 22:11:05 +0200169 def scriptname#function() # autoload
Bram Moolenaar2c7f8c52020-04-20 19:52:53 +0200170
Bram Moolenaar2bb26582020-10-03 22:52:39 +0200171When using `:function` or `:def` to specify a nested function inside a `:def`
172function, this nested function is local to the code block it is defined in.
Bram Moolenaar4f4d51a2020-10-11 13:57:40 +0200173In a `:def` function it is not possible to define a script-local function. It
Bram Moolenaar2bb26582020-10-03 22:52:39 +0200174is possible to define a global function by using the "g:" prefix.
Bram Moolenaar2c7f8c52020-04-20 19:52:53 +0200175
176When referring to a function and no "s:" or "g:" prefix is used, Vim will
Bram Moolenaar13106602020-10-04 16:06:05 +0200177search for the function:
Bram Moolenaar4f4d51a2020-10-11 13:57:40 +0200178- in the function scope, in block scopes
Bram Moolenaar13106602020-10-04 16:06:05 +0200179- in the script scope, possibly imported
180- in the list of global functions
181However, it is recommended to always use "g:" to refer to a global function
182for clarity.
183
184In all cases the function must be defined before used. That is when it is
Bram Moolenaarcb80aa22020-10-26 21:12:46 +0100185called, when `:defcompile` causes it to be compiled, or when code that calls
186it is being compiled (to figure out the return type).
Bram Moolenaar7ceefb32020-05-01 16:07:38 +0200187
Bram Moolenaare7b1ea02020-08-07 19:54:59 +0200188The result is that functions and variables without a namespace can usually be
Bram Moolenaar7ceefb32020-05-01 16:07:38 +0200189found in the script, either defined there or imported. Global functions and
Bram Moolenaare7b1ea02020-08-07 19:54:59 +0200190variables could be defined anywhere (good luck finding out where!).
Bram Moolenaar2c7f8c52020-04-20 19:52:53 +0200191
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200192Global functions can still be defined and deleted at nearly any time. In
Bram Moolenaar2cfb4a22020-05-07 18:56:00 +0200193Vim9 script script-local functions are defined once when the script is sourced
Bram Moolenaar388a5d42020-05-26 21:20:45 +0200194and cannot be deleted or replaced.
Bram Moolenaar2c7f8c52020-04-20 19:52:53 +0200195
Bram Moolenaar4072ba52020-12-23 13:56:35 +0100196When compiling a function and a function call is encountered for a function
197that is not (yet) defined, the |FuncUndefined| autocommand is not triggered.
198You can use an autoload function if needed, or call a legacy function and have
199|FuncUndefined| triggered there.
200
Bram Moolenaar2c7f8c52020-04-20 19:52:53 +0200201
Bram Moolenaar2b327002020-12-26 15:39:31 +0100202Reloading a Vim9 script clears functions and variables by default ~
203 *vim9-reload*
204When loading a legacy Vim script a second time nothing is removed, the
205commands will replace existing variables and functions and create new ones.
206
207When loading a Vim9 script a second time all existing script-local functions
208and variables are deleted, thus you start with a clean slate. This is useful
209if you are developing a plugin and want to try a new version. If you renamed
210something you don't have to worry about the old name still hanging around.
211
212If you do want to keep items, use: >
Bram Moolenaardcc58e02020-12-28 20:53:21 +0100213 vim9script noclear
Bram Moolenaar2b327002020-12-26 15:39:31 +0100214
215You want to use this in scripts that use a `finish` command to bail out at
216some point when loaded again. E.g. when a buffer local option is set: >
Bram Moolenaardcc58e02020-12-28 20:53:21 +0100217 vim9script noclear
Bram Moolenaar2b327002020-12-26 15:39:31 +0100218 setlocal completefunc=SomeFunc
Bram Moolenaardcc58e02020-12-28 20:53:21 +0100219 if exists('*g:SomeFunc') | finish | endif
Bram Moolenaar2b327002020-12-26 15:39:31 +0100220 def g:SomeFunc()
221 ....
222
Bram Moolenaar2b327002020-12-26 15:39:31 +0100223
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200224Variable declarations with :var, :final and :const ~
Bram Moolenaar2bb26582020-10-03 22:52:39 +0200225 *vim9-declaration* *:var*
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200226Local variables need to be declared with `:var`. Local constants need to be
227declared with `:final` or `:const`. We refer to both as "variables" in this
228section.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100229
230Variables can be local to a script, function or code block: >
231 vim9script
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200232 var script_var = 123
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100233 def SomeFunc()
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200234 var func_var = script_var
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100235 if cond
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200236 var block_var = func_var
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100237 ...
238
239The variables are only visible in the block where they are defined and nested
240blocks. Once the block ends the variable is no longer accessible: >
241 if cond
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200242 var inner = 5
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100243 else
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200244 var inner = 0
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100245 endif
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200246 echo inner # Error!
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100247
248The declaration must be done earlier: >
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200249 var inner: number
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100250 if cond
251 inner = 5
252 else
253 inner = 0
254 endif
255 echo inner
256
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200257To intentionally hide a variable from code that follows, a block can be
258used: >
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100259 {
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200260 var temp = 'temp'
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100261 ...
262 }
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200263 echo temp # Error!
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100264
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +0200265Declaring a variable with a type but without an initializer will initialize to
266zero, false or empty.
267
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200268In Vim9 script `:let` cannot be used. An existing variable is assigned to
269without any command. The same for global, window, tab, buffer and Vim
270variables, because they are not really declared. They can also be deleted
Bram Moolenaarf5a48012020-08-01 17:00:03 +0200271with `:unlet`.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100272
Bram Moolenaare7b1ea02020-08-07 19:54:59 +0200273Variables and functions cannot shadow previously defined or imported variables
274and functions.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100275Variables may shadow Ex commands, rename the variable if needed.
276
Bram Moolenaar7ceefb32020-05-01 16:07:38 +0200277Global variables and user defined functions must be prefixed with "g:", also
278at the script level. >
Bram Moolenaard1caa942020-04-10 22:10:56 +0200279 vim9script
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200280 var script_local = 'text'
Bram Moolenaar2547aa92020-07-26 17:00:44 +0200281 g:global = 'value'
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200282 var Funcref = g:ThatFunction
Bram Moolenaard1caa942020-04-10 22:10:56 +0200283
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200284Since `&opt = value` is now assigning a value to option "opt", ":&" cannot be
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100285used to repeat a `:substitute` command.
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +0200286
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200287
288Constants ~
289 *vim9-const* *vim9-final*
290How constants work varies between languages. Some consider a variable that
291can't be assigned another value a constant. JavaScript is an example. Others
292also make the value immutable, thus when a constant uses a list, the list
293cannot be changed. In Vim9 we can use both.
294
295`:const` is used for making both the variable and the value a constant. Use
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +0200296this for composite structures that you want to make sure will not be modified.
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200297Example: >
298 const myList = [1, 2]
299 myList = [3, 4] # Error!
300 myList[0] = 9 # Error!
301 muList->add(3) # Error!
Bram Moolenaar2bb26582020-10-03 22:52:39 +0200302< *:final*
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200303`:final` is used for making only the variable a constant, the value can be
304changed. This is well known from Java. Example: >
305 final myList = [1, 2]
306 myList = [3, 4] # Error!
307 myList[0] = 9 # OK
308 muList->add(3) # OK
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +0200309
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +0200310It is common to write constants as ALL_CAPS, but you don't have to.
311
312The constant only applies to the value itself, not what it refers to. >
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200313 final females = ["Mary"]
314 const NAMES = [["John", "Peter"], females]
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +0200315 NAMES[0] = ["Jack"] # Error!
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200316 NAMES[0][0] = "Jack" # Error!
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +0200317 NAMES[1] = ["Emma"] # Error!
318 Names[1][0] = "Emma" # OK, now females[0] == "Emma"
319
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200320< *E1092*
Bram Moolenaar2547aa92020-07-26 17:00:44 +0200321Declaring more than one variable at a time, using the unpack notation, is
322currently not supported: >
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200323 var [v1, v2] = GetValues() # Error!
Bram Moolenaar2547aa92020-07-26 17:00:44 +0200324That is because the type needs to be inferred from the list item type, which
325isn't that easy.
326
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100327
328Omitting :call and :eval ~
329
330Functions can be called without `:call`: >
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200331 writefile(lines, 'file')
Bram Moolenaar560979e2020-02-04 22:53:05 +0100332Using `:call` is still possible, but this is discouraged.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100333
334A method call without `eval` is possible, so long as the start is an
Bram Moolenaarae616492020-07-28 20:07:27 +0200335identifier or can't be an Ex command. Examples: >
336 myList->add(123)
337 g:myList->add(123)
338 [1, 2, 3]->Process()
Bram Moolenaar2bede172020-11-19 18:53:18 +0100339 {a: 1, b: 2}->Process()
Bram Moolenaarae616492020-07-28 20:07:27 +0200340 "foobar"->Process()
341 ("foobar")->Process()
342 'foobar'->Process()
343 ('foobar')->Process()
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100344
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200345In the rare case there is ambiguity between a function name and an Ex command,
Bram Moolenaare7b1ea02020-08-07 19:54:59 +0200346prepend ":" to make clear you want to use the Ex command. For example, there
347is both the `:substitute` command and the `substitute()` function. When the
348line starts with `substitute(` this will use the function. Prepend a colon to
349use the command instead: >
Bram Moolenaar0c6ceaf2020-02-22 18:36:32 +0100350 :substitute(pattern (replacement (
Bram Moolenaar5b1c8fe2020-02-21 18:42:43 +0100351
Bram Moolenaarcc390ff2020-02-29 22:06:30 +0100352Note that while variables need to be defined before they can be used,
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200353functions can be called before being defined. This is required to allow
354for cyclic dependencies between functions. It is slightly less efficient,
Bram Moolenaarcc390ff2020-02-29 22:06:30 +0100355since the function has to be looked up by name. And a typo in the function
Bram Moolenaarae616492020-07-28 20:07:27 +0200356name will only be found when the function is called.
Bram Moolenaarcc390ff2020-02-29 22:06:30 +0100357
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100358
Bram Moolenaard1caa942020-04-10 22:10:56 +0200359Omitting function() ~
360
361A user defined function can be used as a function reference in an expression
362without `function()`. The argument types and return type will then be checked.
363The function must already have been defined. >
364
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200365 var Funcref = MyFunction
Bram Moolenaard1caa942020-04-10 22:10:56 +0200366
367When using `function()` the resulting type is "func", a function with any
368number of arguments and any return type. The function can be defined later.
369
370
Bram Moolenaar2b327002020-12-26 15:39:31 +0100371Lambda using => instead of -> ~
Bram Moolenaar65c44152020-12-24 15:14:01 +0100372
373In legacy script there can be confusion between using "->" for a method call
374and for a lambda. Also, when a "{" is found the parser needs to figure out if
375it is the start of a lambda or a dictionary, which is now more complicated
376because of the use of argument types.
377
378To avoid these problems Vim9 script uses a different syntax for a lambda,
379which is similar to Javascript: >
380 var Lambda = (arg) => expression
381
Bram Moolenaar2b327002020-12-26 15:39:31 +0100382No line break is allowed in the arguments of a lambda up to and including the
Bram Moolenaar65c44152020-12-24 15:14:01 +0100383"=>". This is OK: >
384 filter(list, (k, v) =>
385 v > 0)
386This does not work: >
387 filter(list, (k, v)
388 => v > 0)
Bram Moolenaardcc58e02020-12-28 20:53:21 +0100389This also does not work: >
Bram Moolenaar65c44152020-12-24 15:14:01 +0100390 filter(list, (k,
391 v) => v > 0)
Bram Moolenaardcc58e02020-12-28 20:53:21 +0100392But you can use a backslash to concatenate the lines before parsing: >
393 filter(list, (k,
394 \ v)
395 \ => v > 0)
Bram Moolenaar65c44152020-12-24 15:14:01 +0100396
397Additionally, a lambda can contain statements in {}: >
398 var Lambda = (arg) => {
399 g:was_called = 'yes'
400 return expression
401 }
402NOT IMPLEMENTED YET
403
Bram Moolenaar2b327002020-12-26 15:39:31 +0100404To avoid the "{" of a dictionary literal to be recognized as a statement block
405wrap it in parenthesis: >
406 var Lambda = (arg) => ({key: 42})
Bram Moolenaar65c44152020-12-24 15:14:01 +0100407
408
Bram Moolenaar4fdae992020-04-12 16:38:57 +0200409Automatic line continuation ~
410
411In many cases it is obvious that an expression continues on the next line. In
Bram Moolenaardcc58e02020-12-28 20:53:21 +0100412those cases there is no need to prefix the line with a backslash (see
413|line-continuation|). For example, when a list spans multiple lines: >
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200414 var mylist = [
Bram Moolenaar4fdae992020-04-12 16:38:57 +0200415 'one',
416 'two',
417 ]
Bram Moolenaare6085c52020-04-12 20:19:16 +0200418And when a dict spans multiple lines: >
Bram Moolenaar2bede172020-11-19 18:53:18 +0100419 var mydict = {
Bram Moolenaare6085c52020-04-12 20:19:16 +0200420 one: 1,
421 two: 2,
422 }
423Function call: >
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200424 var result = Func(
Bram Moolenaare6085c52020-04-12 20:19:16 +0200425 arg1,
426 arg2
427 )
428
Bram Moolenaardf069ee2020-06-22 23:02:51 +0200429For binary operators in expressions not in [], {} or () a line break is
430possible just before or after the operator. For example: >
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200431 var text = lead
Bram Moolenaardf069ee2020-06-22 23:02:51 +0200432 .. middle
433 .. end
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200434 var total = start +
Bram Moolenaar9c7e6dd2020-04-12 20:55:20 +0200435 end -
436 correction
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200437 var result = positive
Bram Moolenaardf069ee2020-06-22 23:02:51 +0200438 ? PosFunc(arg)
439 : NegFunc(arg)
Bram Moolenaar9c7e6dd2020-04-12 20:55:20 +0200440
Bram Moolenaar2547aa92020-07-26 17:00:44 +0200441For a method call using "->" and a member using a dot, a line break is allowed
442before it: >
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200443 var result = GetBuilder()
Bram Moolenaar73fef332020-06-21 22:12:03 +0200444 ->BuilderSetWidth(333)
445 ->BuilderSetHeight(777)
446 ->BuilderBuild()
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200447 var result = MyDict
Bram Moolenaar2547aa92020-07-26 17:00:44 +0200448 .member
Bram Moolenaar73fef332020-06-21 22:12:03 +0200449
Bram Moolenaardcc58e02020-12-28 20:53:21 +0100450For commands that have an argument that is a list of commands, the | character
451at the start of the line indicates line continuation: >
452 autocmd BufNewFile *.match if condition
453 | echo 'match'
454 | endif
455
Bram Moolenaardf069ee2020-06-22 23:02:51 +0200456< *E1050*
457To make it possible for the operator at the start of the line to be
Bram Moolenaar7ff78462020-07-10 22:00:53 +0200458recognized, it is required to put a colon before a range. This will add
Bram Moolenaardf069ee2020-06-22 23:02:51 +0200459"start" and print: >
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200460 var result = start
Bram Moolenaardf069ee2020-06-22 23:02:51 +0200461 + print
Bram Moolenaar7ff78462020-07-10 22:00:53 +0200462Like this: >
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200463 var result = start + print
Bram Moolenaar7ff78462020-07-10 22:00:53 +0200464
Bram Moolenaardf069ee2020-06-22 23:02:51 +0200465This will assign "start" and print a line: >
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200466 var result = start
Bram Moolenaardf069ee2020-06-22 23:02:51 +0200467 :+ print
Bram Moolenaar4fdae992020-04-12 16:38:57 +0200468
Bram Moolenaar23515b42020-11-29 14:36:24 +0100469Note that the colon is not required for the |+cmd| argument: >
470 edit +6 fname
471
Bram Moolenaar5e774c72020-04-12 21:53:00 +0200472It is also possible to split a function header over multiple lines, in between
473arguments: >
474 def MyFunc(
475 text: string,
476 separator = '-'
477 ): string
478
Bram Moolenaar4072ba52020-12-23 13:56:35 +0100479Since a continuation line cannot be easily recognized the parsing of commands
Bram Moolenaar65c44152020-12-24 15:14:01 +0100480has been made stricter. E.g., because of the error in the first line, the
Bram Moolenaar4072ba52020-12-23 13:56:35 +0100481second line is seen as a separate command: >
482 popup_create(some invalid expression, {
483 exit_cb: Func})
484Now "exit_cb: Func})" is actually a valid command: save any changes to the
485file "_cb: Func})" and exit. To avoid this kind of mistake in Vim9 script
486there must be white space between most command names and the argument.
487
488
Bram Moolenaar7ff78462020-07-10 22:00:53 +0200489Notes:
490- "enddef" cannot be used at the start of a continuation line, it ends the
491 current function.
492- No line break is allowed in the LHS of an assignment. Specifically when
493 unpacking a list |:let-unpack|. This is OK: >
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200494 [var1, var2] =
Bram Moolenaar7ff78462020-07-10 22:00:53 +0200495 Func()
496< This does not work: >
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200497 [var1,
Bram Moolenaar7ff78462020-07-10 22:00:53 +0200498 var2] =
499 Func()
500- No line break is allowed in between arguments of an `:echo`, `:execute` and
501 similar commands. This is OK: >
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200502 echo [1,
Bram Moolenaar7ff78462020-07-10 22:00:53 +0200503 2] [3,
504 4]
505< This does not work: >
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200506 echo [1, 2]
Bram Moolenaar7ff78462020-07-10 22:00:53 +0200507 [3, 4]
Bram Moolenaar4fdae992020-04-12 16:38:57 +0200508
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100509No curly braces expansion ~
510
511|curly-braces-names| cannot be used.
512
513
Bram Moolenaar2bede172020-11-19 18:53:18 +0100514Dictionary literals ~
515
516Traditionally Vim has supported dictionary literals with a {} syntax: >
517 let dict = {'key': value}
518
Bram Moolenaarc5e6a712020-12-04 19:12:14 +0100519Later it became clear that using a simple text key is very common, thus
520literal dictionaries were introduced in a backwards compatible way: >
Bram Moolenaar2bede172020-11-19 18:53:18 +0100521 let dict = #{key: value}
522
Bram Moolenaarc5e6a712020-12-04 19:12:14 +0100523However, this #{} syntax is unlike any existing language. As it turns out
524that using a literal key is much more common than using an expression, and
Bram Moolenaar2bede172020-11-19 18:53:18 +0100525considering that JavaScript uses this syntax, using the {} form for dictionary
Bram Moolenaarc5e6a712020-12-04 19:12:14 +0100526literals is considered a much more useful syntax. In Vim9 script the {} form
Bram Moolenaar2bede172020-11-19 18:53:18 +0100527uses literal keys: >
528 let dict = {key: value}
529
Bram Moolenaarc5e6a712020-12-04 19:12:14 +0100530This works for alphanumeric characters, underscore and dash. If you want to
531use another character, use a single or double quoted string: >
532 let dict = {'key with space': value}
533 let dict = {"key\twith\ttabs": value}
534 let dict = {'': value} # empty key
535
536In case the key needs to be an expression, square brackets can be used, just
537like in JavaScript: >
Bram Moolenaar2bede172020-11-19 18:53:18 +0100538 let dict = {["key" .. nr]: value}
539
540
Bram Moolenaarf5a48012020-08-01 17:00:03 +0200541No :xit, :t, :append, :change or :insert ~
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100542
Bram Moolenaarf5a48012020-08-01 17:00:03 +0200543These commands are too easily confused with local variable names.
544Instead of `:x` or `:xit` you can use `:exit`.
545Instead of `:t` you can use `:copy`.
Bram Moolenaar560979e2020-02-04 22:53:05 +0100546
547
548Comparators ~
549
550The 'ignorecase' option is not used for comparators that use strings.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100551
552
553White space ~
554
555Vim9 script enforces proper use of white space. This is no longer allowed: >
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200556 var name=234 # Error!
557 var name= 234 # Error!
558 var name =234 # Error!
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100559There must be white space before and after the "=": >
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200560 var name = 234 # OK
Bram Moolenaar7ff78462020-07-10 22:00:53 +0200561White space must also be put before the # that starts a comment after a
562command: >
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200563 var name = 234# Error!
564 var name = 234 # OK
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100565
566White space is required around most operators.
567
568White space is not allowed:
569- Between a function name and the "(": >
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200570 call Func (arg) # Error!
571 call Func
572 \ (arg) # Error!
573 call Func(arg) # OK
574 call Func(
575 \ arg) # OK
576 call Func(
577 \ arg # OK
Bram Moolenaar5b1c8fe2020-02-21 18:42:43 +0100578 \ )
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100579
580
581Conditions and expressions ~
582
Bram Moolenaar13106602020-10-04 16:06:05 +0200583Conditions and expressions are mostly working like they do in other languages.
584Some values are different from legacy Vim script:
585 value legacy Vim script Vim9 script ~
586 0 falsy falsy
587 1 truthy truthy
588 99 truthy Error!
589 "0" falsy Error!
590 "99" truthy Error!
591 "text" falsy Error!
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100592
Bram Moolenaar13106602020-10-04 16:06:05 +0200593For the "??" operator and when using "!" then there is no error, every value
594is either falsy or truthy. This is mostly like JavaScript, except that an
595empty list and dict is falsy:
596
597 type truthy when ~
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +0200598 bool v:true or 1
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100599 number non-zero
600 float non-zero
601 string non-empty
602 blob non-empty
603 list non-empty (different from JavaScript)
604 dictionary non-empty (different from JavaScript)
Bram Moolenaard1caa942020-04-10 22:10:56 +0200605 func when there is a function name
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100606 special v:true
607 job when not NULL
608 channel when not NULL
609 class when not NULL
610 object when not NULL (TODO: when isTrue() returns v:true)
611
Bram Moolenaar2bb26582020-10-03 22:52:39 +0200612The boolean operators "||" and "&&" expect the values to be boolean, zero or
613one: >
614 1 || false == true
615 0 || 1 == true
616 0 || false == false
617 1 && true == true
618 0 && 1 == false
619 8 || 0 Error!
620 'yes' && 0 Error!
621 [] || 99 Error!
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100622
Bram Moolenaar2bb26582020-10-03 22:52:39 +0200623When using "!" for inverting, there is no error for using any type and the
Bram Moolenaar13106602020-10-04 16:06:05 +0200624result is a boolean. "!!" can be used to turn any value into boolean: >
Bram Moolenaar2bb26582020-10-03 22:52:39 +0200625 !'yes' == false
Bram Moolenaar13106602020-10-04 16:06:05 +0200626 !![] == false
627 !![1, 2, 3] == true
Bram Moolenaar2bb26582020-10-03 22:52:39 +0200628
629When using "`.."` for string concatenation arguments of simple types are
Bram Moolenaar13106602020-10-04 16:06:05 +0200630always converted to string: >
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100631 'hello ' .. 123 == 'hello 123'
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200632 'hello ' .. v:true == 'hello v:true'
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100633
Bram Moolenaar418f1df2020-08-12 21:34:49 +0200634Simple types are string, float, special and bool. For other types |string()|
635can be used.
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200636 *false* *true*
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100637In Vim9 script one can use "true" for v:true and "false" for v:false.
638
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200639Indexing a string with [idx] or [idx, idx] uses character indexes instead of
640byte indexes. Example: >
641 echo 'bár'[1]
642In legacy script this results in the character 0xc3 (an illegal byte), in Vim9
643script this results in the string 'á'.
644
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100645
Bram Moolenaare46a4402020-06-30 20:38:27 +0200646What to watch out for ~
647 *vim9-gotchas*
648Vim9 was designed to be closer to often used programming languages, but at the
649same time tries to support the legacy Vim commands. Some compromises had to
650be made. Here is a summary of what might be unexpected.
651
652Ex command ranges need to be prefixed with a colon. >
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200653 -> # legacy Vim: shifts the previous line to the right
654 ->func() # Vim9: method call in continuation line
655 :-> # Vim9: shifts the previous line to the right
Bram Moolenaare46a4402020-06-30 20:38:27 +0200656
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200657 %s/a/b # legacy Vim: substitute on all lines
Bram Moolenaare46a4402020-06-30 20:38:27 +0200658 x = alongname
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200659 % another # Vim9: line continuation without a backslash
660 :%s/a/b # Vim9: substitute on all lines
661 'text'->func() # Vim9: method call
662 :'t # legacy Vim: jump to mark m
Bram Moolenaare46a4402020-06-30 20:38:27 +0200663
Bram Moolenaare7b1ea02020-08-07 19:54:59 +0200664Some Ex commands can be confused with assignments in Vim9 script: >
665 g:name = value # assignment
666 g:pattern:cmd # invalid command - ERROR
667 :g:pattern:cmd # :global command
668
Bram Moolenaare46a4402020-06-30 20:38:27 +0200669Functions defined with `:def` compile the whole function. Legacy functions
670can bail out, and the following lines are not parsed: >
671 func Maybe()
672 if !has('feature')
673 return
674 endif
675 use-feature
676 endfunc
677Vim9 functions are compiled as a whole: >
678 def Maybe()
679 if !has('feature')
680 return
681 endif
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200682 use-feature # May give compilation error
Bram Moolenaare46a4402020-06-30 20:38:27 +0200683 enddef
684For a workaround, split it in two functions: >
685 func Maybe()
686 if has('feature')
687 call MaybyInner()
688 endif
689 endfunc
690 if has('feature')
691 def MaybeInner()
692 use-feature
693 enddef
694 endif
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200695Or put the unsupported code inside an `if` with a constant expression that
Bram Moolenaar207f0092020-08-30 17:20:20 +0200696evaluates to false: >
697 def Maybe()
698 if has('feature')
699 use-feature
700 endif
701 enddef
702Note that for unrecognized commands there is no check for "|" and a following
703command. This will give an error for missing `endif`: >
704 def Maybe()
705 if has('feature') | use-feature | endif
706 enddef
Bram Moolenaare46a4402020-06-30 20:38:27 +0200707
Bram Moolenaar4072ba52020-12-23 13:56:35 +0100708Other differences ~
709
710Patterns are used like 'magic' is set, unless explicitly overruled.
711The 'edcompatible' option value is not used.
712The 'gdefault' option value is not used.
713
714
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100715==============================================================================
716
7173. New style functions *fast-functions*
718
719THIS IS STILL UNDER DEVELOPMENT - ANYTHING CAN BREAK - ANYTHING CAN CHANGE
720
721 *:def*
Bram Moolenaar3d1cde82020-08-15 18:55:18 +0200722:def[!] {name}([arguments])[: {return-type}]
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100723 Define a new function by the name {name}. The body of
724 the function follows in the next lines, until the
725 matching `:enddef`.
726
Bram Moolenaard77a8522020-04-03 21:59:57 +0200727 When {return-type} is omitted or is "void" the
728 function is not expected to return anything.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100729
730 {arguments} is a sequence of zero or more argument
731 declarations. There are three forms:
732 {name}: {type}
733 {name} = {value}
734 {name}: {type} = {value}
735 The first form is a mandatory argument, the caller
736 must always provide them.
737 The second and third form are optional arguments.
738 When the caller omits an argument the {value} is used.
739
Bram Moolenaar65e0d772020-06-14 17:29:55 +0200740 The function will be compiled into instructions when
Bram Moolenaar2547aa92020-07-26 17:00:44 +0200741 called, or when `:disassemble` or `:defcompile` is
742 used. Syntax and type errors will be produced at that
743 time.
Bram Moolenaar65e0d772020-06-14 17:29:55 +0200744
Bram Moolenaar2547aa92020-07-26 17:00:44 +0200745 It is possible to nest `:def` inside another `:def` or
746 `:function` up to about 50 levels deep.
Bram Moolenaar560979e2020-02-04 22:53:05 +0100747
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200748 [!] is used as with `:function`. Note that
749 script-local functions cannot be deleted or redefined
750 later in Vim9 script. They can only be removed by
751 reloading the same script.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100752
753 *:enddef*
Bram Moolenaar2547aa92020-07-26 17:00:44 +0200754:enddef End of a function defined with `:def`. It should be on
755 a line by its own.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100756
757
Bram Moolenaar5b1c8fe2020-02-21 18:42:43 +0100758If the script the function is defined in is Vim9 script, then script-local
759variables can be accessed without the "s:" prefix. They must be defined
Bram Moolenaar65e0d772020-06-14 17:29:55 +0200760before the function is compiled. If the script the function is defined in is
761legacy script, then script-local variables must be accessed with the "s:"
Bram Moolenaar207f0092020-08-30 17:20:20 +0200762prefix and they do not need to exist (they can be deleted any time).
Bram Moolenaar5b1c8fe2020-02-21 18:42:43 +0100763
Bram Moolenaar388a5d42020-05-26 21:20:45 +0200764 *:defc* *:defcompile*
765:defc[ompile] Compile functions defined in the current script that
766 were not compiled yet.
767 This will report errors found during the compilation.
Bram Moolenaar5b1c8fe2020-02-21 18:42:43 +0100768
Bram Moolenaarebdf3c92020-02-15 21:41:42 +0100769 *:disa* *:disassemble*
770:disa[ssemble] {func} Show the instructions generated for {func}.
771 This is for debugging and testing.
Bram Moolenaarcc390ff2020-02-29 22:06:30 +0100772 Note that for command line completion of {func} you
773 can prepend "s:" to find script-local functions.
Bram Moolenaarebdf3c92020-02-15 21:41:42 +0100774
Bram Moolenaar7ff78462020-07-10 22:00:53 +0200775Limitations ~
776
777Local variables will not be visible to string evaluation. For example: >
Bram Moolenaar2b327002020-12-26 15:39:31 +0100778 def MapList(): list<string>
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200779 var list = ['aa', 'bb', 'cc', 'dd']
Bram Moolenaar7ff78462020-07-10 22:00:53 +0200780 return range(1, 2)->map('list[v:val]')
781 enddef
782
783The map argument is a string expression, which is evaluated without the
784function scope. Instead, use a lambda: >
Bram Moolenaar2b327002020-12-26 15:39:31 +0100785 def MapList(): list<string>
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200786 var list = ['aa', 'bb', 'cc', 'dd']
Bram Moolenaar2b327002020-12-26 15:39:31 +0100787 return range(1, 2)->map(( _, v) => list[v])
Bram Moolenaar7ff78462020-07-10 22:00:53 +0200788 enddef
789
Bram Moolenaar2b327002020-12-26 15:39:31 +0100790The same is true for commands that are not compiled, such as `:global`.
791For these the backtick expansion can be used. Example: >
792 def Replace()
793 var newText = 'blah'
794 g/pattern/s/^/`=newText`/
795 enddef
Bram Moolenaar7ff78462020-07-10 22:00:53 +0200796
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100797==============================================================================
798
7994. Types *vim9-types*
800
801THIS IS STILL UNDER DEVELOPMENT - ANYTHING CAN BREAK - ANYTHING CAN CHANGE
802
803The following builtin types are supported:
804 bool
805 number
806 float
807 string
808 blob
Bram Moolenaard77a8522020-04-03 21:59:57 +0200809 list<{type}>
810 dict<{type}>
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100811 job
812 channel
Bram Moolenaarb17893a2020-03-14 08:19:51 +0100813 func
Bram Moolenaard1caa942020-04-10 22:10:56 +0200814 func: {type}
Bram Moolenaard77a8522020-04-03 21:59:57 +0200815 func({type}, ...)
816 func({type}, ...): {type}
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100817
818Not supported yet:
Bram Moolenaard77a8522020-04-03 21:59:57 +0200819 tuple<a: {type}, b: {type}, ...>
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100820
Bram Moolenaard77a8522020-04-03 21:59:57 +0200821These types can be used in declarations, but no value will have this type:
Bram Moolenaar2547aa92020-07-26 17:00:44 +0200822 {type}|{type} {not implemented yet}
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100823 void
824 any
825
Bram Moolenaard77a8522020-04-03 21:59:57 +0200826There is no array type, use list<{type}> instead. For a list constant an
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100827efficient implementation is used that avoids allocating lot of small pieces of
828memory.
829
Bram Moolenaard77a8522020-04-03 21:59:57 +0200830A partial and function can be declared in more or less specific ways:
831func any kind of function reference, no type
Bram Moolenaard1caa942020-04-10 22:10:56 +0200832 checking for arguments or return value
Bram Moolenaard77a8522020-04-03 21:59:57 +0200833func: {type} any number and type of arguments with specific
834 return type
Bram Moolenaard1caa942020-04-10 22:10:56 +0200835func({type}) function with argument type, does not return
Bram Moolenaard77a8522020-04-03 21:59:57 +0200836 a value
Bram Moolenaard1caa942020-04-10 22:10:56 +0200837func({type}): {type} function with argument type and return type
838func(?{type}) function with type of optional argument, does
839 not return a value
840func(...{type}) function with type of variable number of
841 arguments, does not return a value
842func({type}, ?{type}, ...{type}): {type}
843 function with:
844 - type of mandatory argument
845 - type of optional argument
846 - type of variable number of arguments
847 - return type
Bram Moolenaard77a8522020-04-03 21:59:57 +0200848
849If the return type is "void" the function does not return a value.
850
851The reference can also be a |Partial|, in which case it stores extra arguments
852and/or a dictionary, which are not visible to the caller. Since they are
853called in the same way the declaration is the same.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100854
855Custom types can be defined with `:type`: >
856 :type MyList list<string>
Bram Moolenaar127542b2020-08-09 17:22:04 +0200857Custom types must start with a capital letter, to avoid name clashes with
858builtin types added later, similarly to user functions.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100859{not implemented yet}
860
861And classes and interfaces can be used as types: >
862 :class MyClass
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200863 :var mine: MyClass
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100864
865 :interface MyInterface
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200866 :var mine: MyInterface
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100867
868 :class MyTemplate<Targ>
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200869 :var mine: MyTemplate<number>
870 :var mine: MyTemplate<string>
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100871
872 :class MyInterface<Targ>
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200873 :var mine: MyInterface<number>
874 :var mine: MyInterface<string>
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100875{not implemented yet}
876
877
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200878Variable types and type casting ~
879 *variable-types*
Bram Moolenaar64d662d2020-08-09 19:02:50 +0200880Variables declared in Vim9 script or in a `:def` function have a type, either
881specified explicitly or inferred from the initialization.
882
883Global, buffer, window and tab page variables do not have a specific type, the
884value can be changed at any time, possibly changing the type. Therefore, in
885compiled code the "any" type is assumed.
886
887This can be a problem when the "any" type is undesired and the actual type is
888expected to always be the same. For example, when declaring a list: >
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200889 var l: list<number> = [1, g:two]
Bram Moolenaar4072ba52020-12-23 13:56:35 +0100890At compile time Vim doesn't know the type of "g:two" and the expression type
891becomes list<any>. An instruction is generated to check the list type before
892doing the assignment, which is a bit inefficient.
893 *type-casting*
894To avoid this, use a type cast: >
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200895 var l: list<number> = [1, <number>g:two]
Bram Moolenaar4072ba52020-12-23 13:56:35 +0100896The compiled code will then only check that "g:two" is a number and give an
897error if it isn't. This is called type casting.
Bram Moolenaar64d662d2020-08-09 19:02:50 +0200898
899The syntax of a type cast is: "<" {type} ">". There cannot be white space
900after the "<" or before the ">" (to avoid them being confused with
901smaller-than and bigger-than operators).
902
903The semantics is that, if needed, a runtime type check is performed. The
904value is not actually changed. If you need to change the type, e.g. to change
905it to a string, use the |string()| function. Or use |str2nr()| to convert a
906string to a number.
907
908
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200909Type inference ~
910 *type-inference*
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100911In general: Whenever the type is clear it can be omitted. For example, when
912declaring a variable and giving it a value: >
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200913 var name = 0 # infers number type
914 var name = 'hello' # infers string type
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100915
Bram Moolenaar127542b2020-08-09 17:22:04 +0200916The type of a list and dictionary comes from the common type of the values.
917If the values all have the same type, that type is used for the list or
918dictionary. If there is a mix of types, the "any" type is used. >
919 [1, 2, 3] list<number>
920 ['a', 'b', 'c'] list<string>
921 [1, 'x', 3] list<any>
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100922
Bram Moolenaar207f0092020-08-30 17:20:20 +0200923
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200924Stricter type checking ~
925 *type-checking*
Bram Moolenaar207f0092020-08-30 17:20:20 +0200926In legacy Vim script, where a number was expected, a string would be
927automatically converted to a number. This was convenient for an actual number
928such as "123", but leads to unexpected problems (but no error message) if the
929string doesn't start with a number. Quite often this leads to hard-to-find
930bugs.
931
932In Vim9 script this has been made stricter. In most places it works just as
Bram Moolenaar1c6737b2020-09-07 22:18:52 +0200933before, if the value used matches the expected type. There will sometimes be
934an error, thus breaking backwards compatibility. For example:
Bram Moolenaar207f0092020-08-30 17:20:20 +0200935- Using a number other than 0 or 1 where a boolean is expected. *E1023*
936- Using a string value when setting a number options.
937- Using a number where a string is expected. *E1024*
938
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100939==============================================================================
940
Bram Moolenaar30fd8202020-09-26 15:09:30 +02009415. Namespace, Import and Export
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100942 *vim9script* *vim9-export* *vim9-import*
943
944THIS IS STILL UNDER DEVELOPMENT - ANYTHING CAN BREAK - ANYTHING CAN CHANGE
945
946A Vim9 script can be written to be imported. This means that everything in
947the script is local, unless exported. Those exported items, and only those
948items, can then be imported in another script.
949
Bram Moolenaar207f0092020-08-30 17:20:20 +0200950You can cheat by using the global namespace explicitly. We will assume here
951that you don't do that.
952
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100953
954Namespace ~
Bram Moolenaardcc58e02020-12-28 20:53:21 +0100955 *vim9-namespace*
Bram Moolenaar560979e2020-02-04 22:53:05 +0100956To recognize a file that can be imported the `vim9script` statement must
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100957appear as the first statement in the file. It tells Vim to interpret the
958script in its own namespace, instead of the global namespace. If a file
959starts with: >
960 vim9script
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200961 var myvar = 'yes'
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100962Then "myvar" will only exist in this file. While without `vim9script` it would
963be available as `g:myvar` from any other script and function.
964
965The variables at the file level are very much like the script-local "s:"
Bram Moolenaar2c7f8c52020-04-20 19:52:53 +0200966variables in legacy Vim script, but the "s:" is omitted. And they cannot be
967deleted.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100968
Bram Moolenaar2c7f8c52020-04-20 19:52:53 +0200969In Vim9 script the global "g:" namespace can still be used as before. And the
970"w:", "b:" and "t:" namespaces. These have in common that variables are not
971declared and they can be deleted.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100972
973A side effect of `:vim9script` is that the 'cpoptions' option is set to the
974Vim default value, like with: >
975 :set cpo&vim
976One of the effects is that |line-continuation| is always enabled.
977The original value of 'cpoptions' is restored at the end of the script.
978
979
980Export ~
981 *:export* *:exp*
Bram Moolenaar2547aa92020-07-26 17:00:44 +0200982Exporting an item can be written as: >
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100983 export const EXPORTED_CONST = 1234
Bram Moolenaar30fd8202020-09-26 15:09:30 +0200984 export var someValue = ...
985 export final someValue = ...
986 export const someValue = ...
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100987 export def MyFunc() ...
988 export class MyClass ...
989
990As this suggests, only constants, variables, `:def` functions and classes can
Bram Moolenaar2547aa92020-07-26 17:00:44 +0200991be exported. {classes are not implemented yet}
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100992
Bram Moolenaar65e0d772020-06-14 17:29:55 +0200993 *E1042*
994`:export` can only be used in Vim9 script, at the script level.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100995
996
997Import ~
Bram Moolenaar73fef332020-06-21 22:12:03 +0200998 *:import* *:imp* *E1094*
Bram Moolenaar8a7d6542020-01-26 15:56:19 +0100999The exported items can be imported individually in another Vim9 script: >
1000 import EXPORTED_CONST from "thatscript.vim"
1001 import MyClass from "myclass.vim"
1002
1003To import multiple items at the same time: >
1004 import {someValue, MyClass} from "thatscript.vim"
1005
Bram Moolenaar560979e2020-02-04 22:53:05 +01001006In case the name is ambiguous, another name can be specified: >
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001007 import MyClass as ThatClass from "myclass.vim"
1008 import {someValue, MyClass as ThatClass} from "myclass.vim"
1009
1010To import all exported items under a specific identifier: >
1011 import * as That from 'thatscript.vim'
1012
Bram Moolenaar1d59aa12020-09-19 18:50:13 +02001013{not implemented yet: using "This as That"}
1014
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001015Then you can use "That.EXPORTED_CONST", "That.someValue", etc. You are free
1016to choose the name "That", but it is highly recommended to use the name of the
1017script file to avoid confusion.
1018
Bram Moolenaar1c6737b2020-09-07 22:18:52 +02001019`:import` can also be used in legacy Vim script. The imported items still
1020become script-local, even when the "s:" prefix is not given.
1021
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001022The script name after `import` can be:
1023- A relative path, starting "." or "..". This finds a file relative to the
1024 location of the script file itself. This is useful to split up a large
1025 plugin into several files.
1026- An absolute path, starting with "/" on Unix or "D:/" on MS-Windows. This
Bram Moolenaarcb80aa22020-10-26 21:12:46 +01001027 will rarely be used.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001028- A path not being relative or absolute. This will be found in the
1029 "import" subdirectories of 'runtimepath' entries. The name will usually be
1030 longer and unique, to avoid loading the wrong file.
1031
1032Once a vim9 script file has been imported, the result is cached and used the
1033next time the same script is imported. It will not be read again.
1034 *:import-cycle*
1035The `import` commands are executed when encountered. If that script (directly
1036or indirectly) imports the current script, then items defined after the
1037`import` won't be processed yet. Therefore cyclic imports can exist, but may
1038result in undefined items.
1039
1040
1041Import in an autoload script ~
1042
1043For optimal startup speed, loading scripts should be postponed until they are
Bram Moolenaar560979e2020-02-04 22:53:05 +01001044actually needed. A recommended mechanism:
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001045
10461. In the plugin define user commands, functions and/or mappings that refer to
1047 an autoload script. >
1048 command -nargs=1 SearchForStuff call searchfor#Stuff(<f-args>)
1049
1050< This goes in .../plugin/anyname.vim. "anyname.vim" can be freely chosen.
1051
Bram Moolenaar3d1cde82020-08-15 18:55:18 +020010522. In the autoload script do the actual work. You can import items from
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001053 other files to split up functionality in appropriate pieces. >
1054 vim9script
1055 import FilterFunc from "../import/someother.vim"
1056 def searchfor#Stuff(arg: string)
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001057 var filtered = FilterFunc(arg)
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001058 ...
1059< This goes in .../autoload/searchfor.vim. "searchfor" in the file name
1060 must be exactly the same as the prefix for the function name, that is how
1061 Vim finds the file.
1062
10633. Other functionality, possibly shared between plugins, contains the exported
1064 items and any private items. >
1065 vim9script
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001066 var localVar = 'local'
Bram Moolenaar1c6737b2020-09-07 22:18:52 +02001067 export def FilterFunc(arg: string): string
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001068 ...
1069< This goes in .../import/someother.vim.
1070
Bram Moolenaar418f1df2020-08-12 21:34:49 +02001071When compiling a `:def` function and a function in an autoload script is
1072encountered, the script is not loaded until the `:def` function is called.
1073
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001074
1075Import in legacy Vim script ~
1076
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001077If an `import` statement is used in legacy Vim script, the script-local "s:"
1078namespace will be used for the imported item, even when "s:" is not specified.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001079
1080
1081==============================================================================
1082
Bram Moolenaar1d59aa12020-09-19 18:50:13 +020010836. Future work: classes *vim9-classes*
1084
1085Above "class" was mentioned a few times, but it has not been implemented yet.
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001086Most of Vim9 script can be created without this functionality, and since
Bram Moolenaar1d59aa12020-09-19 18:50:13 +02001087implementing classes is going to be a lot of work, it is left for the future.
1088For now we'll just make sure classes can be added later.
1089
1090Thoughts:
1091- `class` / `endclass`, everything in one file
1092- Class names are always CamelCase
1093- Single constructor
1094- Single inheritance with `class ThisClass extends BaseClass`
1095- `abstract class`
1096- `interface` (Abstract class without any implementation)
1097- `class SomeClass implements SomeInterface`
1098- Generics for class: `class <Tkey, Tentry>`
1099- Generics for function: `def <Tkey> GetLast(key: Tkey)`
1100
1101Again, much of this is from TypeScript.
1102
1103Some things that look like good additions:
1104- Use a class as an interface (like Dart)
1105- Extend a class with methods, using an import (like Dart)
1106
1107An important class that will be provided is "Promise". Since Vim is single
1108threaded, connecting asynchronous operations is a natural way of allowing
1109plugins to do their work without blocking the user. It's a uniform way to
1110invoke callbacks and handle timeouts and errors.
1111
1112==============================================================================
1113
Bram Moolenaar8a7d6542020-01-26 15:56:19 +010011149. Rationale *vim9-rationale*
1115
1116The :def command ~
1117
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001118Plugin writers have asked for much faster Vim script. Investigations have
Bram Moolenaar560979e2020-02-04 22:53:05 +01001119shown that keeping the existing semantics of function calls make this close to
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001120impossible, because of the overhead involved with calling a function, setting
1121up the local function scope and executing lines. There are many details that
1122need to be handled, such as error messages and exceptions. The need to create
1123a dictionary for a: and l: scopes, the a:000 list and several others add too
1124much overhead that cannot be avoided.
1125
1126Therefore the `:def` method to define a new-style function had to be added,
1127which allows for a function with different semantics. Most things still work
1128as before, but some parts do not. A new way to define a function was
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001129considered the best way to separate the legacy style code from Vim9 style code.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001130
1131Using "def" to define a function comes from Python. Other languages use
1132"function" which clashes with legacy Vim script.
1133
1134
1135Type checking ~
1136
1137When compiling lines of Vim commands into instructions as much as possible
1138should be done at compile time. Postponing it to runtime makes the execution
1139slower and means mistakes are found only later. For example, when
1140encountering the "+" character and compiling this into a generic add
1141instruction, at execution time the instruction would have to inspect the type
1142of the arguments and decide what kind of addition to do. And when the
1143type is dictionary throw an error. If the types are known to be numbers then
1144an "add number" instruction can be used, which is faster. The error can be
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001145given at compile time, no error handling is needed at runtime, since adding
1146two numbers cannot fail.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001147
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001148The syntax for types, using <type> for compound types, is similar to Java. It
1149is easy to understand and widely used. The type names are what were used in
1150Vim before, with some additions such as "void" and "bool".
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001151
1152
Bram Moolenaar1d59aa12020-09-19 18:50:13 +02001153Removing clutter and weirdness ~
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001154
Bram Moolenaar1d59aa12020-09-19 18:50:13 +02001155Once decided that `:def` functions have different syntax than legacy functions,
1156we are free to add improvements to make the code more familiar for users who
1157know popular programming languages. In other words: remove weird things that
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001158only Vim does.
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001159
Bram Moolenaar1d59aa12020-09-19 18:50:13 +02001160We can also remove clutter, mainly things that were done to make Vim script
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001161backwards compatible with the good old Vi commands.
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001162
Bram Moolenaar1d59aa12020-09-19 18:50:13 +02001163Examples:
1164- Drop `:call` for calling a function and `:eval` for manipulating data.
1165- Drop using a leading backslash for line continuation, automatically figure
1166 out where an expression ends.
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001167
Bram Moolenaar1d59aa12020-09-19 18:50:13 +02001168However, this does require that some things need to change:
1169- Comments start with # instead of ", to avoid confusing them with strings.
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001170 This is good anyway, it is known from several popular languages.
Bram Moolenaar1d59aa12020-09-19 18:50:13 +02001171- Ex command ranges need to be prefixed with a colon, to avoid confusion with
1172 expressions (single quote can be a string or a mark, "/" can be divide or a
1173 search command, etc.).
1174
1175Goal is to limit the differences. A good criteria is that when the old syntax
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001176is accidentally used you are very likely to get an error message.
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001177
1178
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001179Syntax and semantics from popular languages ~
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001180
1181Script writers have complained that the Vim script syntax is unexpectedly
1182different from what they are used to. To reduce this complaint popular
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001183languages are used as an example. At the same time, we do not want to abandon
1184the well-known parts of legacy Vim script.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001185
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001186For many things TypeScript is followed. It's a recent language that is
1187gaining popularity and has similarities with Vim script. It also has a
Bram Moolenaar1d59aa12020-09-19 18:50:13 +02001188mix of static typing (a variable always has a known value type) and dynamic
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001189typing (a variable can have different types, this changes at runtime). Since
Bram Moolenaar1d59aa12020-09-19 18:50:13 +02001190legacy Vim script is dynamically typed and a lot of existing functionality
1191(esp. builtin functions) depends on that, while static typing allows for much
1192faster execution, we need to have this mix in Vim9 script.
1193
Bram Moolenaar1c6737b2020-09-07 22:18:52 +02001194There is no intention to completely match TypeScript syntax and semantics. We
1195just want to take those parts that we can use for Vim and we expect Vim users
Bram Moolenaar1d59aa12020-09-19 18:50:13 +02001196will be happy with. TypeScript is a complex language with its own history,
1197advantages and disadvantages. To get an idea of the disadvantages read the
1198book: "JavaScript: The Good Parts". Or find the article "TypeScript: the good
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +02001199parts" and read the "Things to avoid" section.
1200
Bram Moolenaar1d59aa12020-09-19 18:50:13 +02001201People familiar with other languages (Java, Python, etc.) will also find
1202things in TypeScript that they do not like or do not understand. We'll try to
1203avoid those things.
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +02001204
1205Specific items from TypeScript we avoid:
1206- Overloading "+", using it both for addition and string concatenation. This
1207 goes against legacy Vim script and often leads to mistakes. For that reason
1208 we will keep using ".." for string concatenation. Lua also uses ".." this
1209 way. And it allows for conversion to string for more values.
1210- TypeScript can use an expression like "99 || 'yes'" in a condition, but
1211 cannot assign the value to a boolean. That is inconsistent and can be
1212 annoying. Vim recognizes an expression with && or || and allows using the
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001213 result as a bool. TODO: to be reconsidered
Bram Moolenaar0b4c66c2020-09-14 21:39:44 +02001214- TypeScript considers an empty string as Falsy, but an empty list or dict as
1215 Truthy. That is inconsistent. In Vim an empty list and dict are also
1216 Falsy.
1217- TypeScript has various "Readonly" types, which have limited usefulness,
1218 since a type cast can remove the immutable nature. Vim locks the value,
1219 which is more flexible, but is only checked at runtime.
Bram Moolenaar1c6737b2020-09-07 22:18:52 +02001220
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001221
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001222Declarations ~
1223
1224Legacy Vim script uses `:let` for every assignment, while in Vim9 declarations
1225are used. That is different, thus it's good to use a different command:
1226`:var`. This is used in many languages. The semantics might be slightly
1227different, but it's easily recognized as a declaration.
1228
Bram Moolenaar23515b42020-11-29 14:36:24 +01001229Using `:const` for constants is common, but the semantics varies. Some
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001230languages only make the variable immutable, others also make the value
1231immutable. Since "final" is well known from Java for only making the variable
1232immutable we decided to use that. And then `:const` can be used for making
1233both immutable. This was also used in legacy Vim script and the meaning is
1234almost the same.
1235
1236What we end up with is very similar to Dart: >
1237 :var name # mutable variable and value
1238 :final name # immutable variable, mutable value
1239 :const name # immutable variable and value
1240
1241Since legacy and Vim9 script will be mixed and global variables will be
1242shared, optional type checking is desirable. Also, type inference will avoid
1243the need for specifying the type in many cases. The TypeScript syntax fits
1244best for adding types to declarations: >
1245 var name: string # string type is specified
1246 ...
1247 name = 'John'
1248 const greeting = 'hello' # string type is inferred
1249
1250This is how we put types in a declaration: >
1251 var mylist: list<string>
1252 final mylist: list<string> = ['foo']
1253 def Func(arg1: number, arg2: string): bool
1254
1255Two alternatives were considered:
12561. Put the type before the name, like Dart: >
1257 var list<string> mylist
1258 final list<string> mylist = ['foo']
1259 def Func(number arg1, string arg2) bool
12602. Put the type after the variable name, but do not use a colon, like Go: >
1261 var mylist list<string>
1262 final mylist list<string> = ['foo']
1263 def Func(arg1 number, arg2 string) bool
1264
1265The first is more familiar for anyone used to C or Java. The second one
Bram Moolenaar4f4d51a2020-10-11 13:57:40 +02001266doesn't really have an advantage over the first, so let's discard the second.
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001267
1268Since we use type inference the type can be left out when it can be inferred
1269from the value. This means that after `var` we don't know if a type or a name
1270follows. That makes parsing harder, not only for Vim but also for humans.
1271Also, it will not be allowed to use a variable name that could be a type name,
1272using `var string string` is too confusing.
1273
1274The chosen syntax, using a colon to separate the name from the type, adds
1275punctuation, but it actually makes it easier to recognize the parts of a
1276declaration.
1277
1278
1279Expressions ~
1280
Bram Moolenaar4f4d51a2020-10-11 13:57:40 +02001281Expression evaluation was already close to what other languages are doing.
1282Some details are unexpected and can be improved. For example a boolean
1283condition would accept a string, convert it to a number and check if the
1284number is non-zero. This is unexpected and often leads to mistakes, since
1285text not starting with a number would be converted to zero, which is
Bram Moolenaarcb80aa22020-10-26 21:12:46 +01001286considered false. Thus using a string for a condition would often not give an
1287error and be considered false. That is confusing.
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001288
Bram Moolenaar23515b42020-11-29 14:36:24 +01001289In Vim9 type checking is stricter to avoid mistakes. Where a condition is
Bram Moolenaar4f4d51a2020-10-11 13:57:40 +02001290used, e.g. with the `:if` command and the `||` operator, only boolean-like
1291values are accepted:
1292 true: `true`, `v:true`, `1`, `0 < 9`
1293 false: `false`, `v:false`, `0`, `0 > 9`
1294Note that the number zero is false and the number one is true. This is more
Bram Moolenaarcb80aa22020-10-26 21:12:46 +01001295permissive than most other languages. It was done because many builtin
Bram Moolenaar4f4d51a2020-10-11 13:57:40 +02001296functions return these values.
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001297
Bram Moolenaar4f4d51a2020-10-11 13:57:40 +02001298If you have any type of value and want to use it as a boolean, use the `!!`
1299operator:
1300 true: !`!'text'`, `!![99]`, `!!{'x': 1}`, `!!99`
1301 false: `!!''`, `!![]`, `!!{}`
1302
1303From a language like JavaScript we have this handy construct: >
1304 GetName() || 'unknown'
1305However, this conflicts with only allowing a boolean for a condition.
1306Therefore the "??" operator was added: >
1307 GetName() ?? 'unknown'
1308Here you can explicitly express your intention to use the value as-is and not
1309result in a boolean. This is called the |falsy-operator|.
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001310
1311
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001312Import and Export ~
1313
1314A problem of legacy Vim script is that by default all functions and variables
1315are global. It is possible to make them script-local, but then they are not
Bram Moolenaar1c6737b2020-09-07 22:18:52 +02001316available in other scripts. This defies the concept of a package that only
1317exports selected items and keeps the rest local.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001318
Bram Moolenaar3d1cde82020-08-15 18:55:18 +02001319In Vim9 script a mechanism very similar to the JavaScript import and export
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001320mechanism is supported. It is a variant to the existing `:source` command
1321that works like one would expect:
1322- Instead of making everything global by default, everything is script-local,
1323 unless exported.
Bram Moolenaar1c6737b2020-09-07 22:18:52 +02001324- When importing a script the symbols that are imported are explicitly listed,
1325 avoiding name conflicts and failures if functionality is added later.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001326- The mechanism allows for writing a big, long script with a very clear API:
1327 the exported function(s) and class(es).
1328- By using relative paths loading can be much faster for an import inside of a
1329 package, no need to search many directories.
1330- Once an import has been used, it can be cached and loading it again can be
1331 avoided.
1332- The Vim-specific use of "s:" to make things script-local can be dropped.
1333
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001334When sourcing a Vim9 script from a legacy script, only the items defined
1335globally can be used, not the exported items. Alternatives considered:
1336- All the exported items become available as script-local items. This makes
Bram Moolenaar1c6737b2020-09-07 22:18:52 +02001337 it uncontrollable what items get defined and likely soon leads to trouble.
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001338- Use the exported items and make them global. Disadvantage is that it's then
1339 not possible to avoid name clashes in the global namespace.
1340- Completely disallow sourcing a Vim9 script, require using `:import`. That
1341 makes it difficult to use scripts for testing, or sourcing them from the
1342 command line to try them out.
Bram Moolenaar1c6737b2020-09-07 22:18:52 +02001343Note that you can also use `:import` in legacy Vim script, see above.
Bram Moolenaar65e0d772020-06-14 17:29:55 +02001344
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001345
Bram Moolenaar1d59aa12020-09-19 18:50:13 +02001346Compiling functions early ~
1347
1348Functions are compiled when called or when `:defcompile` is used. Why not
1349compile them early, so that syntax and type errors are reported early?
1350
1351The functions can't be compiled right away when encountered, because there may
1352be forward references to functions defined later. Consider defining functions
1353A, B and C, where A calls B, B calls C, and C calls A again. It's impossible
1354to reorder the functions to avoid forward references.
1355
1356An alternative would be to first scan through the file to locate items and
1357figure out their type, so that forward references are found, and only then
1358execute the script and compile the functions. This means the script has to be
1359parsed twice, which is slower, and some conditions at the script level, such
1360as checking if a feature is supported, are hard to use. An attempt was made
1361to see if it works, but it turned out to be impossible to make work nicely.
1362
1363It would be possible to compile all the functions at the end of the script.
1364The drawback is that if a function never gets called, the overhead of
1365compiling it counts anyway. Since startup speed is very important, in most
1366cases it's better to do it later and accept that syntax and type errors are
1367only reported then. In case these errors should be found early, e.g. when
1368testing, the `:defcompile` command will help out.
1369
1370
Bram Moolenaar30fd8202020-09-26 15:09:30 +02001371Why not use an embedded language? ~
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001372
1373Vim supports interfaces to Perl, Python, Lua, Tcl and a few others. But
Bram Moolenaar1d59aa12020-09-19 18:50:13 +02001374these interfaces have never become widely used, for various reasons. When
1375Vim9 was designed a decision was made to make these interfaces lower priority
1376and concentrate on Vim script.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001377
Bram Moolenaar1d59aa12020-09-19 18:50:13 +02001378Still, plugin writers may find other languages more familiar, want to use
1379existing libraries or see a performance benefit. We encourage plugin authors
1380to write code in any language and run it as an external tool, using jobs and
1381channels. We can try to make this easier somehow.
1382
1383Using an external tool also has disadvantages. An alternative is to convert
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001384the tool into Vim script. For that to be possible without too much
1385translation, and keeping the code fast at the same time, the constructs of the
1386tool need to be supported. Since most languages support classes the lack of
Bram Moolenaar1c6737b2020-09-07 22:18:52 +02001387support for classes in Vim is then a problem.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001388
Bram Moolenaar1d59aa12020-09-19 18:50:13 +02001389
1390Classes ~
1391
1392Vim supports a kind-of object oriented programming by adding methods to a
1393dictionary. With some care this can be made to work, but it does not look
1394like real classes. On top of that, it's quite slow, because of the use of
1395dictionaries.
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001396
1397The support of classes in Vim9 script is a "minimal common functionality" of
Bram Moolenaar1c6737b2020-09-07 22:18:52 +02001398class support in most languages. It works much like Java, which is the most
Bram Moolenaar8a7d6542020-01-26 15:56:19 +01001399popular programming language.
1400
1401
1402
1403 vim:tw=78:ts=8:noet:ft=help:norl: