2020-09-14 21:39:44 +02:00
|
|
|
*vim9.txt* For Vim version 8.2. Last change: 2020 Sep 13
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
VIM REFERENCE MANUAL by Bram Moolenaar
|
|
|
|
|
|
|
|
|
|
|
|
THIS IS STILL UNDER DEVELOPMENT - ANYTHING CAN BREAK - ANYTHING CAN CHANGE
|
|
|
|
|
2020-05-01 16:07:38 +02:00
|
|
|
Vim9 script commands and expressions. *vim9*
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
Most expression help is in |eval.txt|. This file is about the new syntax and
|
|
|
|
features in Vim9 script.
|
|
|
|
|
|
|
|
THIS IS STILL UNDER DEVELOPMENT - ANYTHING CAN BREAK - ANYTHING CAN CHANGE
|
|
|
|
|
|
|
|
|
2020-08-07 19:54:59 +02:00
|
|
|
1. What is Vim9 script? |vim9-script|
|
2020-01-26 15:56:19 +01:00
|
|
|
2. Differences |vim9-differences|
|
|
|
|
3. New style functions |fast-functions|
|
|
|
|
4. Types |vim9-types|
|
|
|
|
5. Namespace, Import and Export |vim9script|
|
|
|
|
|
|
|
|
9. Rationale |vim9-rationale|
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
|
|
|
|
1. What is Vim9 script? *vim9-script*
|
|
|
|
|
|
|
|
THIS IS STILL UNDER DEVELOPMENT - ANYTHING CAN BREAK - ANYTHING CAN CHANGE
|
|
|
|
|
2020-05-01 16:07:38 +02:00
|
|
|
Vim script has been growing over time, while preserving backwards
|
|
|
|
compatibility. That means bad choices from the past often can't be changed
|
2020-06-21 22:12:03 +02:00
|
|
|
and compatibility with Vi restricts possible solutions. Execution is quite
|
2020-05-01 16:07:38 +02:00
|
|
|
slow, each line is parsed every time it is executed.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-05-01 16:07:38 +02:00
|
|
|
The main goal of Vim9 script is to drastically improve performance. This is
|
|
|
|
accomplished by compiling commands into instructions that can be efficiently
|
|
|
|
executed. An increase in execution speed of 10 to 100 times can be expected.
|
|
|
|
|
|
|
|
A secondary goal is to avoid Vim-specific constructs and get closer to
|
|
|
|
commonly used programming languages, such as JavaScript, TypeScript and Java.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
The performance improvements can only be achieved by not being 100% backwards
|
2020-05-26 21:20:45 +02:00
|
|
|
compatible. For example, making function arguments available in the
|
|
|
|
"a:" dictionary adds quite a lot of overhead. In a Vim9 function this
|
|
|
|
dictionary is not available. Other differences are more subtle, such as how
|
|
|
|
errors are handled.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
The Vim9 script syntax and semantics are used in:
|
|
|
|
- a function defined with the `:def` command
|
|
|
|
- a script file where the first command is `vim9script`
|
2020-08-30 17:20:20 +02:00
|
|
|
- an autocommand defined in the context of these
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
When using `:function` in a Vim9 script file the legacy syntax is used.
|
2020-05-01 16:07:38 +02:00
|
|
|
However, this can be confusing and is therefore discouraged.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-05-01 16:07:38 +02:00
|
|
|
Vim9 script and legacy Vim script can be mixed. There is no requirement to
|
|
|
|
rewrite old scripts, they keep working as before.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
|
|
|
|
2. Differences from legacy Vim script *vim9-differences*
|
|
|
|
|
|
|
|
THIS IS STILL UNDER DEVELOPMENT - ANYTHING CAN BREAK - ANYTHING CAN CHANGE
|
|
|
|
|
2020-04-13 14:41:35 +02:00
|
|
|
Comments starting with # ~
|
|
|
|
|
2020-07-17 20:36:00 +02:00
|
|
|
In legacy Vim script comments start with double quote. In Vim9 script
|
|
|
|
comments start with #. >
|
|
|
|
# declarations
|
2020-06-21 22:12:03 +02:00
|
|
|
let count = 0 # number of occurrences
|
2020-04-13 14:41:35 +02:00
|
|
|
|
2020-07-17 20:36:00 +02:00
|
|
|
The reason is that a double quote can also be the start of a string. In many
|
2020-08-15 18:55:18 +02:00
|
|
|
places, especially halfway through an expression with a line break, it's hard
|
|
|
|
to tell what the meaning is, since both a string and a comment can be followed
|
|
|
|
by arbitrary text. To avoid confusion only # comments are recognized. This
|
|
|
|
is the same as in shell scripts and Python programs.
|
2020-07-17 20:36:00 +02:00
|
|
|
|
|
|
|
In Vi # is a command to list text with numbers. In Vim9 script you can use
|
|
|
|
`:number` for that. >
|
2020-07-28 20:07:27 +02:00
|
|
|
101 number
|
2020-07-17 20:36:00 +02:00
|
|
|
|
|
|
|
To improve readability there must be a space between a command and the #
|
2020-04-20 19:52:53 +02:00
|
|
|
that starts a comment. Note that #{ is the start of a dictionary, therefore
|
2020-07-28 20:07:27 +02:00
|
|
|
it does not start a comment.
|
2020-04-20 19:52:53 +02:00
|
|
|
|
2020-04-13 14:41:35 +02:00
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
Vim9 functions ~
|
|
|
|
|
2020-05-01 16:07:38 +02:00
|
|
|
A function defined with `:def` is compiled. Execution is many times faster,
|
|
|
|
often 10x to 100x times.
|
|
|
|
|
2020-05-26 21:20:45 +02:00
|
|
|
Many errors are already found when compiling, before the function is executed.
|
2020-05-01 16:07:38 +02:00
|
|
|
The syntax is strict, to enforce code that is easy to read and understand.
|
|
|
|
|
2020-08-30 17:20:20 +02:00
|
|
|
Compilation is done when:
|
|
|
|
- the function is first called
|
|
|
|
- when the `:defcompile` command is encountered in the script where the
|
|
|
|
function was defined
|
|
|
|
- `:disassemble` is used for the function.
|
|
|
|
- a function that is compiled calls the function or uses it as a function
|
|
|
|
reference
|
2020-05-26 21:20:45 +02:00
|
|
|
|
|
|
|
`:def` has no options like `:function` does: "range", "abort", "dict" or
|
|
|
|
"closure". A `:def` function always aborts on an error, does not get a range
|
|
|
|
passed and cannot be a "dict" function.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-05-01 16:07:38 +02:00
|
|
|
The argument types and return type need to be specified. The "any" type can
|
|
|
|
be used, type checking will then be done at runtime, like with legacy
|
|
|
|
functions.
|
|
|
|
|
2020-08-15 18:55:18 +02:00
|
|
|
Arguments are accessed by name, without "a:", just like any other language.
|
|
|
|
There is no "a:" dictionary or "a:000" list.
|
2020-05-01 16:07:38 +02:00
|
|
|
|
|
|
|
Variable arguments are defined as the last argument, with a name and have a
|
2020-08-15 18:55:18 +02:00
|
|
|
list type, similar to TypeScript. For example, a list of numbers: >
|
2020-09-07 22:18:52 +02:00
|
|
|
def MyFunc(...itemlist: list<number>)
|
2020-01-26 15:56:19 +01:00
|
|
|
for item in itemlist
|
|
|
|
...
|
|
|
|
|
|
|
|
|
2020-05-01 16:07:38 +02:00
|
|
|
Functions and variables are script-local by default ~
|
2020-06-14 17:29:55 +02:00
|
|
|
*vim9-scopes*
|
2020-04-20 19:52:53 +02:00
|
|
|
When using `:function` or `:def` to specify a new function at the script level
|
|
|
|
in a Vim9 script, the function is local to the script, as if "s:" was
|
2020-07-29 22:11:05 +02:00
|
|
|
prefixed. Using the "s:" prefix is optional. To define or use a global
|
2020-08-07 19:54:59 +02:00
|
|
|
function or variable the "g:" prefix should be used. For functions in an
|
2020-07-29 22:11:05 +02:00
|
|
|
autoload script the "name#" prefix is sufficient. >
|
|
|
|
def ThisFunction() # script-local
|
|
|
|
def s:ThisFunction() # script-local
|
2020-09-07 22:18:52 +02:00
|
|
|
def g:ThatFunction() # global
|
|
|
|
def ThatFunction() # global if no local ThatFunction()
|
2020-07-29 22:11:05 +02:00
|
|
|
def scriptname#function() # autoload
|
2020-04-20 19:52:53 +02:00
|
|
|
|
|
|
|
When using `:function` or `:def` to specify a new function inside a function,
|
|
|
|
the function is local to the function. It is not possible to define a
|
2020-05-01 16:07:38 +02:00
|
|
|
script-local function inside a function. It is possible to define a global
|
|
|
|
function, using the "g:" prefix.
|
2020-04-20 19:52:53 +02:00
|
|
|
|
|
|
|
When referring to a function and no "s:" or "g:" prefix is used, Vim will
|
2020-08-07 19:54:59 +02:00
|
|
|
prefer using a local function (in the function scope, script scope or
|
|
|
|
imported) before looking for a global function.
|
2020-05-26 21:20:45 +02:00
|
|
|
In all cases the function must be defined before used. That is when it is
|
|
|
|
first called or when `:defcompile` causes the call to be compiled.
|
2020-05-01 16:07:38 +02:00
|
|
|
|
2020-08-07 19:54:59 +02:00
|
|
|
The result is that functions and variables without a namespace can usually be
|
2020-05-01 16:07:38 +02:00
|
|
|
found in the script, either defined there or imported. Global functions and
|
2020-08-07 19:54:59 +02:00
|
|
|
variables could be defined anywhere (good luck finding out where!).
|
2020-04-20 19:52:53 +02:00
|
|
|
|
2020-08-15 18:55:18 +02:00
|
|
|
Global functions can still be defined and deleted at nearly any time. In
|
2020-05-07 18:56:00 +02:00
|
|
|
Vim9 script script-local functions are defined once when the script is sourced
|
2020-05-26 21:20:45 +02:00
|
|
|
and cannot be deleted or replaced.
|
2020-04-20 19:52:53 +02:00
|
|
|
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
Variable declarations with :let and :const ~
|
2020-06-14 17:29:55 +02:00
|
|
|
*vim9-declaration*
|
2020-01-26 15:56:19 +01:00
|
|
|
Local variables need to be declared with `:let`. Local constants need to be
|
|
|
|
declared with `:const`. We refer to both as "variables".
|
|
|
|
|
|
|
|
Variables can be local to a script, function or code block: >
|
|
|
|
vim9script
|
|
|
|
let script_var = 123
|
|
|
|
def SomeFunc()
|
|
|
|
let func_var = script_var
|
|
|
|
if cond
|
|
|
|
let block_var = func_var
|
|
|
|
...
|
|
|
|
|
|
|
|
The variables are only visible in the block where they are defined and nested
|
|
|
|
blocks. Once the block ends the variable is no longer accessible: >
|
|
|
|
if cond
|
|
|
|
let inner = 5
|
|
|
|
else
|
|
|
|
let inner = 0
|
|
|
|
endif
|
2020-09-07 22:18:52 +02:00
|
|
|
echo inner # Error!
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
The declaration must be done earlier: >
|
|
|
|
let inner: number
|
|
|
|
if cond
|
|
|
|
inner = 5
|
|
|
|
else
|
|
|
|
inner = 0
|
|
|
|
endif
|
|
|
|
echo inner
|
|
|
|
|
2020-05-26 21:20:45 +02:00
|
|
|
To intentionally avoid a variable being available later, a block can be used:
|
|
|
|
>
|
2020-01-26 15:56:19 +01:00
|
|
|
{
|
|
|
|
let temp = 'temp'
|
|
|
|
...
|
|
|
|
}
|
2020-09-07 22:18:52 +02:00
|
|
|
echo temp # Error!
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-09-14 21:39:44 +02:00
|
|
|
Declaring a variable with a type but without an initializer will initialize to
|
|
|
|
zero, false or empty.
|
|
|
|
|
2020-02-04 22:53:05 +01:00
|
|
|
An existing variable cannot be assigned to with `:let`, since that implies a
|
2020-07-26 17:00:44 +02:00
|
|
|
declaration. Global, window, tab, buffer and Vim variables can only be used
|
2020-08-01 17:00:03 +02:00
|
|
|
without `:let`, because they are not really declared, they can also be deleted
|
|
|
|
with `:unlet`.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-08-07 19:54:59 +02:00
|
|
|
Variables and functions cannot shadow previously defined or imported variables
|
|
|
|
and functions.
|
2020-01-26 15:56:19 +01:00
|
|
|
Variables may shadow Ex commands, rename the variable if needed.
|
|
|
|
|
2020-05-01 16:07:38 +02:00
|
|
|
Global variables and user defined functions must be prefixed with "g:", also
|
|
|
|
at the script level. >
|
2020-04-10 22:10:56 +02:00
|
|
|
vim9script
|
|
|
|
let script_local = 'text'
|
2020-07-26 17:00:44 +02:00
|
|
|
g:global = 'value'
|
2020-05-01 16:07:38 +02:00
|
|
|
let Funcref = g:ThatFunction
|
2020-04-10 22:10:56 +02:00
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
Since "&opt = value" is now assigning a value to option "opt", ":&" cannot be
|
|
|
|
used to repeat a `:substitute` command.
|
2020-09-14 21:39:44 +02:00
|
|
|
*vim9-const*
|
|
|
|
In legacy Vim script "const list = []" would make the variable "list"
|
|
|
|
immutable and also the value. Thus you cannot add items to the list. This
|
|
|
|
differs from what many languages do. Vim9 script does it like TypeScript: only
|
|
|
|
"list" is immutable, the value can be changed.
|
|
|
|
|
|
|
|
One can use `:const!` to make both the variable and the value immutable. Use
|
|
|
|
this for composite structures that you want to make sure will not be modified.
|
|
|
|
|
|
|
|
How this works: >
|
|
|
|
vim9script
|
|
|
|
const list = [1, 2]
|
|
|
|
list = [3, 4] # Error!
|
|
|
|
list[0] = 2 # OK
|
|
|
|
|
|
|
|
const! LIST = [1, 2]
|
|
|
|
LIST = [3, 4] # Error!
|
|
|
|
LIST[0] = 2 # Error!
|
|
|
|
It is common to write constants as ALL_CAPS, but you don't have to.
|
|
|
|
|
|
|
|
The constant only applies to the value itself, not what it refers to. >
|
|
|
|
cont females = ["Mary"]
|
|
|
|
const! NAMES = [["John", "Peter"], females]
|
|
|
|
NAMES[0] = ["Jack"] # Error!
|
|
|
|
NAMES[0][0] = ["Jack"] # Error!
|
|
|
|
NAMES[1] = ["Emma"] # Error!
|
|
|
|
Names[1][0] = "Emma" # OK, now females[0] == "Emma"
|
|
|
|
|
|
|
|
Rationale: TypeScript has no way to make the value immutable. One can use
|
|
|
|
immutable types, but that quickly gets complicated for nested values. And
|
|
|
|
with a type cast the value can be made mutable again, which means there is no
|
|
|
|
guarantee the value won't change. Vim supports immutable values, in legacy
|
|
|
|
script this was done with `:lockvar`. But that is an extra statement and also
|
|
|
|
applies to nested values. Therefore the solution to use `:const!`.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-07-26 17:00:44 +02:00
|
|
|
*E1092*
|
|
|
|
Declaring more than one variable at a time, using the unpack notation, is
|
|
|
|
currently not supported: >
|
|
|
|
let [v1, v2] = GetValues() # Error!
|
|
|
|
That is because the type needs to be inferred from the list item type, which
|
|
|
|
isn't that easy.
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
Omitting :call and :eval ~
|
|
|
|
|
|
|
|
Functions can be called without `:call`: >
|
2020-09-07 22:18:52 +02:00
|
|
|
writefile(lines, 'file')
|
2020-02-04 22:53:05 +01:00
|
|
|
Using `:call` is still possible, but this is discouraged.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
A method call without `eval` is possible, so long as the start is an
|
2020-07-28 20:07:27 +02:00
|
|
|
identifier or can't be an Ex command. Examples: >
|
|
|
|
myList->add(123)
|
|
|
|
g:myList->add(123)
|
|
|
|
[1, 2, 3]->Process()
|
|
|
|
#{a: 1, b: 2}->Process()
|
|
|
|
{'a': 1, 'b': 2}->Process()
|
|
|
|
"foobar"->Process()
|
|
|
|
("foobar")->Process()
|
|
|
|
'foobar'->Process()
|
|
|
|
('foobar')->Process()
|
|
|
|
|
2020-08-15 18:55:18 +02:00
|
|
|
In the rare case there is ambiguity between a function name and an Ex command,
|
2020-08-07 19:54:59 +02:00
|
|
|
prepend ":" to make clear you want to use the Ex command. For example, there
|
|
|
|
is both the `:substitute` command and the `substitute()` function. When the
|
|
|
|
line starts with `substitute(` this will use the function. Prepend a colon to
|
|
|
|
use the command instead: >
|
2020-02-22 18:36:32 +01:00
|
|
|
:substitute(pattern (replacement (
|
2020-02-21 18:42:43 +01:00
|
|
|
|
2020-02-29 22:06:30 +01:00
|
|
|
Note that while variables need to be defined before they can be used,
|
2020-08-15 18:55:18 +02:00
|
|
|
functions can be called before being defined. This is required to allow
|
|
|
|
for cyclic dependencies between functions. It is slightly less efficient,
|
2020-02-29 22:06:30 +01:00
|
|
|
since the function has to be looked up by name. And a typo in the function
|
2020-07-28 20:07:27 +02:00
|
|
|
name will only be found when the function is called.
|
2020-02-29 22:06:30 +01:00
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-04-10 22:10:56 +02:00
|
|
|
Omitting function() ~
|
|
|
|
|
|
|
|
A user defined function can be used as a function reference in an expression
|
|
|
|
without `function()`. The argument types and return type will then be checked.
|
|
|
|
The function must already have been defined. >
|
|
|
|
|
|
|
|
let Funcref = MyFunction
|
|
|
|
|
|
|
|
When using `function()` the resulting type is "func", a function with any
|
|
|
|
number of arguments and any return type. The function can be defined later.
|
|
|
|
|
|
|
|
|
2020-04-12 16:38:57 +02:00
|
|
|
Automatic line continuation ~
|
|
|
|
|
|
|
|
In many cases it is obvious that an expression continues on the next line. In
|
2020-08-07 19:54:59 +02:00
|
|
|
those cases there is no need to prefix the line with a backslash
|
|
|
|
|line-continuation|. For example, when a list spans multiple lines: >
|
2020-04-12 16:38:57 +02:00
|
|
|
let mylist = [
|
|
|
|
'one',
|
|
|
|
'two',
|
|
|
|
]
|
2020-04-12 20:19:16 +02:00
|
|
|
And when a dict spans multiple lines: >
|
|
|
|
let mydict = #{
|
|
|
|
one: 1,
|
|
|
|
two: 2,
|
|
|
|
}
|
|
|
|
Function call: >
|
|
|
|
let result = Func(
|
|
|
|
arg1,
|
|
|
|
arg2
|
|
|
|
)
|
|
|
|
|
2020-06-22 23:02:51 +02:00
|
|
|
For binary operators in expressions not in [], {} or () a line break is
|
|
|
|
possible just before or after the operator. For example: >
|
|
|
|
let text = lead
|
|
|
|
.. middle
|
|
|
|
.. end
|
2020-04-12 20:55:20 +02:00
|
|
|
let total = start +
|
|
|
|
end -
|
|
|
|
correction
|
2020-06-22 23:02:51 +02:00
|
|
|
let result = positive
|
|
|
|
? PosFunc(arg)
|
|
|
|
: NegFunc(arg)
|
2020-04-12 20:55:20 +02:00
|
|
|
|
2020-07-26 17:00:44 +02:00
|
|
|
For a method call using "->" and a member using a dot, a line break is allowed
|
|
|
|
before it: >
|
2020-06-21 22:12:03 +02:00
|
|
|
let result = GetBuilder()
|
|
|
|
->BuilderSetWidth(333)
|
|
|
|
->BuilderSetHeight(777)
|
|
|
|
->BuilderBuild()
|
2020-07-26 17:00:44 +02:00
|
|
|
let result = MyDict
|
|
|
|
.member
|
2020-06-21 22:12:03 +02:00
|
|
|
|
2020-06-22 23:02:51 +02:00
|
|
|
< *E1050*
|
|
|
|
To make it possible for the operator at the start of the line to be
|
2020-07-10 22:00:53 +02:00
|
|
|
recognized, it is required to put a colon before a range. This will add
|
2020-06-22 23:02:51 +02:00
|
|
|
"start" and print: >
|
|
|
|
let result = start
|
|
|
|
+ print
|
2020-07-10 22:00:53 +02:00
|
|
|
Like this: >
|
|
|
|
let result = start + print
|
|
|
|
|
2020-06-22 23:02:51 +02:00
|
|
|
This will assign "start" and print a line: >
|
|
|
|
let result = start
|
|
|
|
:+ print
|
2020-04-12 16:38:57 +02:00
|
|
|
|
2020-04-12 21:53:00 +02:00
|
|
|
It is also possible to split a function header over multiple lines, in between
|
|
|
|
arguments: >
|
|
|
|
def MyFunc(
|
|
|
|
text: string,
|
|
|
|
separator = '-'
|
|
|
|
): string
|
|
|
|
|
2020-07-10 22:00:53 +02:00
|
|
|
Notes:
|
|
|
|
- "enddef" cannot be used at the start of a continuation line, it ends the
|
|
|
|
current function.
|
|
|
|
- No line break is allowed in the LHS of an assignment. Specifically when
|
|
|
|
unpacking a list |:let-unpack|. This is OK: >
|
2020-09-07 22:18:52 +02:00
|
|
|
[var1, var2] =
|
2020-07-10 22:00:53 +02:00
|
|
|
Func()
|
|
|
|
< This does not work: >
|
2020-09-07 22:18:52 +02:00
|
|
|
[var1,
|
2020-07-10 22:00:53 +02:00
|
|
|
var2] =
|
|
|
|
Func()
|
|
|
|
- No line break is allowed in between arguments of an `:echo`, `:execute` and
|
|
|
|
similar commands. This is OK: >
|
2020-09-07 22:18:52 +02:00
|
|
|
echo [1,
|
2020-07-10 22:00:53 +02:00
|
|
|
2] [3,
|
|
|
|
4]
|
|
|
|
< This does not work: >
|
2020-09-07 22:18:52 +02:00
|
|
|
echo [1, 2]
|
2020-07-10 22:00:53 +02:00
|
|
|
[3, 4]
|
|
|
|
- No line break is allowed in the arguments of a lambda, between the "{" and
|
|
|
|
"->". This is OK: >
|
2020-09-07 22:18:52 +02:00
|
|
|
filter(list, {k, v ->
|
2020-07-10 22:00:53 +02:00
|
|
|
v > 0})
|
|
|
|
< This does not work: >
|
2020-09-07 22:18:52 +02:00
|
|
|
filter(list, {k,
|
2020-07-10 22:00:53 +02:00
|
|
|
v -> v > 0})
|
2020-06-22 23:02:51 +02:00
|
|
|
|
2020-04-12 16:38:57 +02:00
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
No curly braces expansion ~
|
|
|
|
|
|
|
|
|curly-braces-names| cannot be used.
|
|
|
|
|
|
|
|
|
2020-08-01 17:00:03 +02:00
|
|
|
No :xit, :t, :append, :change or :insert ~
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-08-01 17:00:03 +02:00
|
|
|
These commands are too easily confused with local variable names.
|
|
|
|
Instead of `:x` or `:xit` you can use `:exit`.
|
|
|
|
Instead of `:t` you can use `:copy`.
|
2020-02-04 22:53:05 +01:00
|
|
|
|
|
|
|
|
|
|
|
Comparators ~
|
|
|
|
|
|
|
|
The 'ignorecase' option is not used for comparators that use strings.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
White space ~
|
|
|
|
|
|
|
|
Vim9 script enforces proper use of white space. This is no longer allowed: >
|
2020-09-07 22:18:52 +02:00
|
|
|
let var=234 # Error!
|
|
|
|
let var= 234 # Error!
|
|
|
|
let var =234 # Error!
|
2020-01-26 15:56:19 +01:00
|
|
|
There must be white space before and after the "=": >
|
2020-09-07 22:18:52 +02:00
|
|
|
let var = 234 # OK
|
2020-07-10 22:00:53 +02:00
|
|
|
White space must also be put before the # that starts a comment after a
|
|
|
|
command: >
|
2020-04-13 14:41:35 +02:00
|
|
|
let var = 234# Error!
|
|
|
|
let var = 234 # OK
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
White space is required around most operators.
|
|
|
|
|
|
|
|
White space is not allowed:
|
|
|
|
- Between a function name and the "(": >
|
2020-09-07 22:18:52 +02:00
|
|
|
call Func (arg) # Error!
|
|
|
|
call Func
|
|
|
|
\ (arg) # Error!
|
|
|
|
call Func(arg) # OK
|
|
|
|
call Func(
|
|
|
|
\ arg) # OK
|
|
|
|
call Func(
|
|
|
|
\ arg # OK
|
2020-02-21 18:42:43 +01:00
|
|
|
\ )
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
Conditions and expressions ~
|
|
|
|
|
2020-08-15 18:55:18 +02:00
|
|
|
Conditions and expressions are mostly working like they do in JavaScript. A
|
2020-01-26 15:56:19 +01:00
|
|
|
difference is made where JavaScript does not work like most people expect.
|
|
|
|
Specifically, an empty list is falsey.
|
|
|
|
|
|
|
|
Any type of variable can be used as a condition, there is no error, not even
|
|
|
|
for using a list or job. This is very much like JavaScript, but there are a
|
|
|
|
few exceptions.
|
|
|
|
|
|
|
|
type TRUE when ~
|
2020-09-14 21:39:44 +02:00
|
|
|
bool v:true or 1
|
2020-01-26 15:56:19 +01:00
|
|
|
number non-zero
|
|
|
|
float non-zero
|
|
|
|
string non-empty
|
|
|
|
blob non-empty
|
|
|
|
list non-empty (different from JavaScript)
|
|
|
|
dictionary non-empty (different from JavaScript)
|
2020-04-10 22:10:56 +02:00
|
|
|
func when there is a function name
|
2020-01-26 15:56:19 +01:00
|
|
|
special v:true
|
|
|
|
job when not NULL
|
|
|
|
channel when not NULL
|
|
|
|
class when not NULL
|
|
|
|
object when not NULL (TODO: when isTrue() returns v:true)
|
|
|
|
|
|
|
|
The boolean operators "||" and "&&" do not change the value: >
|
|
|
|
8 || 2 == 8
|
|
|
|
0 || 2 == 2
|
|
|
|
0 || '' == ''
|
|
|
|
8 && 2 == 2
|
|
|
|
0 && 2 == 0
|
2020-07-17 20:36:00 +02:00
|
|
|
2 && 0 == 0
|
2020-01-26 15:56:19 +01:00
|
|
|
[] && 2 == []
|
|
|
|
|
2020-08-12 21:34:49 +02:00
|
|
|
When using `..` for string concatenation arguments of simple types are always
|
|
|
|
converted to string. >
|
2020-01-26 15:56:19 +01:00
|
|
|
'hello ' .. 123 == 'hello 123'
|
2020-08-15 18:55:18 +02:00
|
|
|
'hello ' .. v:true == 'hello v:true'
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-08-12 21:34:49 +02:00
|
|
|
Simple types are string, float, special and bool. For other types |string()|
|
|
|
|
can be used.
|
2020-09-07 22:18:52 +02:00
|
|
|
*false* *true*
|
2020-01-26 15:56:19 +01:00
|
|
|
In Vim9 script one can use "true" for v:true and "false" for v:false.
|
|
|
|
|
2020-08-15 18:55:18 +02:00
|
|
|
Indexing a string with [idx] or [idx, idx] uses character indexes instead of
|
|
|
|
byte indexes. Example: >
|
|
|
|
echo 'bár'[1]
|
|
|
|
In legacy script this results in the character 0xc3 (an illegal byte), in Vim9
|
|
|
|
script this results in the string 'á'.
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-06-30 20:38:27 +02:00
|
|
|
What to watch out for ~
|
|
|
|
*vim9-gotchas*
|
|
|
|
Vim9 was designed to be closer to often used programming languages, but at the
|
|
|
|
same time tries to support the legacy Vim commands. Some compromises had to
|
|
|
|
be made. Here is a summary of what might be unexpected.
|
|
|
|
|
|
|
|
Ex command ranges need to be prefixed with a colon. >
|
2020-09-07 22:18:52 +02:00
|
|
|
-> # legacy Vim: shifts the previous line to the right
|
|
|
|
->func() # Vim9: method call in continuation line
|
|
|
|
:-> # Vim9: shifts the previous line to the right
|
2020-06-30 20:38:27 +02:00
|
|
|
|
2020-09-07 22:18:52 +02:00
|
|
|
%s/a/b # legacy Vim: substitute on all lines
|
2020-06-30 20:38:27 +02:00
|
|
|
x = alongname
|
2020-09-07 22:18:52 +02:00
|
|
|
% another # Vim9: line continuation without a backslash
|
|
|
|
:%s/a/b # Vim9: substitute on all lines
|
|
|
|
'text'->func() # Vim9: method call
|
|
|
|
:'t # legacy Vim: jump to mark m
|
2020-06-30 20:38:27 +02:00
|
|
|
|
2020-08-07 19:54:59 +02:00
|
|
|
Some Ex commands can be confused with assignments in Vim9 script: >
|
|
|
|
g:name = value # assignment
|
|
|
|
g:pattern:cmd # invalid command - ERROR
|
|
|
|
:g:pattern:cmd # :global command
|
|
|
|
|
2020-06-30 20:38:27 +02:00
|
|
|
Functions defined with `:def` compile the whole function. Legacy functions
|
|
|
|
can bail out, and the following lines are not parsed: >
|
|
|
|
func Maybe()
|
|
|
|
if !has('feature')
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
use-feature
|
|
|
|
endfunc
|
|
|
|
Vim9 functions are compiled as a whole: >
|
|
|
|
def Maybe()
|
|
|
|
if !has('feature')
|
|
|
|
return
|
|
|
|
endif
|
2020-09-07 22:18:52 +02:00
|
|
|
use-feature # May give compilation error
|
2020-06-30 20:38:27 +02:00
|
|
|
enddef
|
|
|
|
For a workaround, split it in two functions: >
|
|
|
|
func Maybe()
|
|
|
|
if has('feature')
|
|
|
|
call MaybyInner()
|
|
|
|
endif
|
|
|
|
endfunc
|
|
|
|
if has('feature')
|
|
|
|
def MaybeInner()
|
|
|
|
use-feature
|
|
|
|
enddef
|
|
|
|
endif
|
2020-09-07 22:18:52 +02:00
|
|
|
Or put the unsupported code inside an `if` with a constant expression that
|
2020-08-30 17:20:20 +02:00
|
|
|
evaluates to false: >
|
|
|
|
def Maybe()
|
|
|
|
if has('feature')
|
|
|
|
use-feature
|
|
|
|
endif
|
|
|
|
enddef
|
|
|
|
Note that for unrecognized commands there is no check for "|" and a following
|
|
|
|
command. This will give an error for missing `endif`: >
|
|
|
|
def Maybe()
|
|
|
|
if has('feature') | use-feature | endif
|
|
|
|
enddef
|
2020-06-30 20:38:27 +02:00
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
==============================================================================
|
|
|
|
|
|
|
|
3. New style functions *fast-functions*
|
|
|
|
|
|
|
|
THIS IS STILL UNDER DEVELOPMENT - ANYTHING CAN BREAK - ANYTHING CAN CHANGE
|
|
|
|
|
|
|
|
*:def*
|
2020-08-15 18:55:18 +02:00
|
|
|
:def[!] {name}([arguments])[: {return-type}]
|
2020-01-26 15:56:19 +01:00
|
|
|
Define a new function by the name {name}. The body of
|
|
|
|
the function follows in the next lines, until the
|
|
|
|
matching `:enddef`.
|
|
|
|
|
2020-04-03 21:59:57 +02:00
|
|
|
When {return-type} is omitted or is "void" the
|
|
|
|
function is not expected to return anything.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
{arguments} is a sequence of zero or more argument
|
|
|
|
declarations. There are three forms:
|
|
|
|
{name}: {type}
|
|
|
|
{name} = {value}
|
|
|
|
{name}: {type} = {value}
|
|
|
|
The first form is a mandatory argument, the caller
|
|
|
|
must always provide them.
|
|
|
|
The second and third form are optional arguments.
|
|
|
|
When the caller omits an argument the {value} is used.
|
|
|
|
|
2020-06-14 17:29:55 +02:00
|
|
|
The function will be compiled into instructions when
|
2020-07-26 17:00:44 +02:00
|
|
|
called, or when `:disassemble` or `:defcompile` is
|
|
|
|
used. Syntax and type errors will be produced at that
|
|
|
|
time.
|
2020-06-14 17:29:55 +02:00
|
|
|
|
2020-07-26 17:00:44 +02:00
|
|
|
It is possible to nest `:def` inside another `:def` or
|
|
|
|
`:function` up to about 50 levels deep.
|
2020-02-04 22:53:05 +01:00
|
|
|
|
2020-05-26 21:20:45 +02:00
|
|
|
[!] is used as with `:function`. Note that in Vim9
|
|
|
|
script script-local functions cannot be deleted or
|
2020-06-14 17:29:55 +02:00
|
|
|
redefined later in the same script.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
*:enddef*
|
2020-07-26 17:00:44 +02:00
|
|
|
:enddef End of a function defined with `:def`. It should be on
|
|
|
|
a line by its own.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
|
2020-02-21 18:42:43 +01:00
|
|
|
If the script the function is defined in is Vim9 script, then script-local
|
|
|
|
variables can be accessed without the "s:" prefix. They must be defined
|
2020-06-14 17:29:55 +02:00
|
|
|
before the function is compiled. If the script the function is defined in is
|
|
|
|
legacy script, then script-local variables must be accessed with the "s:"
|
2020-08-30 17:20:20 +02:00
|
|
|
prefix and they do not need to exist (they can be deleted any time).
|
2020-02-21 18:42:43 +01:00
|
|
|
|
2020-05-26 21:20:45 +02:00
|
|
|
*:defc* *:defcompile*
|
|
|
|
:defc[ompile] Compile functions defined in the current script that
|
|
|
|
were not compiled yet.
|
|
|
|
This will report errors found during the compilation.
|
2020-02-21 18:42:43 +01:00
|
|
|
|
2020-02-15 21:41:42 +01:00
|
|
|
*:disa* *:disassemble*
|
|
|
|
:disa[ssemble] {func} Show the instructions generated for {func}.
|
|
|
|
This is for debugging and testing.
|
2020-02-29 22:06:30 +01:00
|
|
|
Note that for command line completion of {func} you
|
|
|
|
can prepend "s:" to find script-local functions.
|
2020-02-15 21:41:42 +01:00
|
|
|
|
2020-07-10 22:00:53 +02:00
|
|
|
Limitations ~
|
|
|
|
|
|
|
|
Local variables will not be visible to string evaluation. For example: >
|
|
|
|
def EvalString(): list<string>
|
|
|
|
let list = ['aa', 'bb', 'cc', 'dd']
|
|
|
|
return range(1, 2)->map('list[v:val]')
|
|
|
|
enddef
|
|
|
|
|
|
|
|
The map argument is a string expression, which is evaluated without the
|
|
|
|
function scope. Instead, use a lambda: >
|
|
|
|
def EvalString(): list<string>
|
|
|
|
let list = ['aa', 'bb', 'cc', 'dd']
|
|
|
|
return range(1, 2)->map({ _, v -> list[v] })
|
|
|
|
enddef
|
|
|
|
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
==============================================================================
|
|
|
|
|
|
|
|
4. Types *vim9-types*
|
|
|
|
|
|
|
|
THIS IS STILL UNDER DEVELOPMENT - ANYTHING CAN BREAK - ANYTHING CAN CHANGE
|
|
|
|
|
|
|
|
The following builtin types are supported:
|
|
|
|
bool
|
|
|
|
number
|
|
|
|
float
|
|
|
|
string
|
|
|
|
blob
|
2020-04-03 21:59:57 +02:00
|
|
|
list<{type}>
|
|
|
|
dict<{type}>
|
2020-01-26 15:56:19 +01:00
|
|
|
job
|
|
|
|
channel
|
2020-03-14 08:19:51 +01:00
|
|
|
func
|
2020-04-10 22:10:56 +02:00
|
|
|
func: {type}
|
2020-04-03 21:59:57 +02:00
|
|
|
func({type}, ...)
|
|
|
|
func({type}, ...): {type}
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
Not supported yet:
|
2020-04-03 21:59:57 +02:00
|
|
|
tuple<a: {type}, b: {type}, ...>
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-04-03 21:59:57 +02:00
|
|
|
These types can be used in declarations, but no value will have this type:
|
2020-07-26 17:00:44 +02:00
|
|
|
{type}|{type} {not implemented yet}
|
2020-01-26 15:56:19 +01:00
|
|
|
void
|
|
|
|
any
|
|
|
|
|
2020-04-03 21:59:57 +02:00
|
|
|
There is no array type, use list<{type}> instead. For a list constant an
|
2020-01-26 15:56:19 +01:00
|
|
|
efficient implementation is used that avoids allocating lot of small pieces of
|
|
|
|
memory.
|
|
|
|
|
2020-04-03 21:59:57 +02:00
|
|
|
A partial and function can be declared in more or less specific ways:
|
|
|
|
func any kind of function reference, no type
|
2020-04-10 22:10:56 +02:00
|
|
|
checking for arguments or return value
|
2020-04-03 21:59:57 +02:00
|
|
|
func: {type} any number and type of arguments with specific
|
|
|
|
return type
|
2020-04-10 22:10:56 +02:00
|
|
|
func({type}) function with argument type, does not return
|
2020-04-03 21:59:57 +02:00
|
|
|
a value
|
2020-04-10 22:10:56 +02:00
|
|
|
func({type}): {type} function with argument type and return type
|
|
|
|
func(?{type}) function with type of optional argument, does
|
|
|
|
not return a value
|
|
|
|
func(...{type}) function with type of variable number of
|
|
|
|
arguments, does not return a value
|
|
|
|
func({type}, ?{type}, ...{type}): {type}
|
|
|
|
function with:
|
|
|
|
- type of mandatory argument
|
|
|
|
- type of optional argument
|
|
|
|
- type of variable number of arguments
|
|
|
|
- return type
|
2020-04-03 21:59:57 +02:00
|
|
|
|
|
|
|
If the return type is "void" the function does not return a value.
|
|
|
|
|
|
|
|
The reference can also be a |Partial|, in which case it stores extra arguments
|
|
|
|
and/or a dictionary, which are not visible to the caller. Since they are
|
|
|
|
called in the same way the declaration is the same.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
Custom types can be defined with `:type`: >
|
|
|
|
:type MyList list<string>
|
2020-08-09 17:22:04 +02:00
|
|
|
Custom types must start with a capital letter, to avoid name clashes with
|
|
|
|
builtin types added later, similarly to user functions.
|
2020-01-26 15:56:19 +01:00
|
|
|
{not implemented yet}
|
|
|
|
|
|
|
|
And classes and interfaces can be used as types: >
|
|
|
|
:class MyClass
|
|
|
|
:let mine: MyClass
|
|
|
|
|
|
|
|
:interface MyInterface
|
|
|
|
:let mine: MyInterface
|
|
|
|
|
|
|
|
:class MyTemplate<Targ>
|
|
|
|
:let mine: MyTemplate<number>
|
|
|
|
:let mine: MyTemplate<string>
|
|
|
|
|
|
|
|
:class MyInterface<Targ>
|
|
|
|
:let mine: MyInterface<number>
|
|
|
|
:let mine: MyInterface<string>
|
|
|
|
{not implemented yet}
|
|
|
|
|
|
|
|
|
2020-08-09 19:02:50 +02:00
|
|
|
Variable types and type casting *variable-types*
|
|
|
|
|
|
|
|
Variables declared in Vim9 script or in a `:def` function have a type, either
|
|
|
|
specified explicitly or inferred from the initialization.
|
|
|
|
|
|
|
|
Global, buffer, window and tab page variables do not have a specific type, the
|
|
|
|
value can be changed at any time, possibly changing the type. Therefore, in
|
|
|
|
compiled code the "any" type is assumed.
|
|
|
|
|
|
|
|
This can be a problem when the "any" type is undesired and the actual type is
|
|
|
|
expected to always be the same. For example, when declaring a list: >
|
|
|
|
let l: list<number> = [1, g:two]
|
|
|
|
This will give an error, because "g:two" has type "any". To avoid this, use a
|
|
|
|
type cast: >
|
|
|
|
let l: list<number> = [1, <number>g:two]
|
|
|
|
< *type-casting*
|
|
|
|
The compiled code will then check that "g:two" is a number at runtime and give
|
|
|
|
an error if it isn't. This is called type casting.
|
|
|
|
|
|
|
|
The syntax of a type cast is: "<" {type} ">". There cannot be white space
|
|
|
|
after the "<" or before the ">" (to avoid them being confused with
|
|
|
|
smaller-than and bigger-than operators).
|
|
|
|
|
|
|
|
The semantics is that, if needed, a runtime type check is performed. The
|
|
|
|
value is not actually changed. If you need to change the type, e.g. to change
|
|
|
|
it to a string, use the |string()| function. Or use |str2nr()| to convert a
|
|
|
|
string to a number.
|
|
|
|
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
Type inference *type-inference*
|
|
|
|
|
|
|
|
In general: Whenever the type is clear it can be omitted. For example, when
|
|
|
|
declaring a variable and giving it a value: >
|
2020-09-07 22:18:52 +02:00
|
|
|
let var = 0 # infers number type
|
|
|
|
let var = 'hello' # infers string type
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-08-09 17:22:04 +02:00
|
|
|
The type of a list and dictionary comes from the common type of the values.
|
|
|
|
If the values all have the same type, that type is used for the list or
|
|
|
|
dictionary. If there is a mix of types, the "any" type is used. >
|
|
|
|
[1, 2, 3] list<number>
|
|
|
|
['a', 'b', 'c'] list<string>
|
|
|
|
[1, 'x', 3] list<any>
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-08-30 17:20:20 +02:00
|
|
|
|
|
|
|
Stricter type checking *type-checking*
|
|
|
|
|
|
|
|
In legacy Vim script, where a number was expected, a string would be
|
|
|
|
automatically converted to a number. This was convenient for an actual number
|
|
|
|
such as "123", but leads to unexpected problems (but no error message) if the
|
|
|
|
string doesn't start with a number. Quite often this leads to hard-to-find
|
|
|
|
bugs.
|
|
|
|
|
|
|
|
In Vim9 script this has been made stricter. In most places it works just as
|
2020-09-07 22:18:52 +02:00
|
|
|
before, if the value used matches the expected type. There will sometimes be
|
|
|
|
an error, thus breaking backwards compatibility. For example:
|
2020-08-30 17:20:20 +02:00
|
|
|
- Using a number other than 0 or 1 where a boolean is expected. *E1023*
|
|
|
|
- Using a string value when setting a number options.
|
|
|
|
- Using a number where a string is expected. *E1024*
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
==============================================================================
|
|
|
|
|
|
|
|
5. Namespace, Import and Export
|
|
|
|
*vim9script* *vim9-export* *vim9-import*
|
|
|
|
|
|
|
|
THIS IS STILL UNDER DEVELOPMENT - ANYTHING CAN BREAK - ANYTHING CAN CHANGE
|
|
|
|
|
|
|
|
A Vim9 script can be written to be imported. This means that everything in
|
|
|
|
the script is local, unless exported. Those exported items, and only those
|
|
|
|
items, can then be imported in another script.
|
|
|
|
|
2020-08-30 17:20:20 +02:00
|
|
|
You can cheat by using the global namespace explicitly. We will assume here
|
|
|
|
that you don't do that.
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
Namespace ~
|
|
|
|
*:vim9script* *:vim9*
|
2020-02-04 22:53:05 +01:00
|
|
|
To recognize a file that can be imported the `vim9script` statement must
|
2020-01-26 15:56:19 +01:00
|
|
|
appear as the first statement in the file. It tells Vim to interpret the
|
|
|
|
script in its own namespace, instead of the global namespace. If a file
|
|
|
|
starts with: >
|
|
|
|
vim9script
|
|
|
|
let myvar = 'yes'
|
|
|
|
Then "myvar" will only exist in this file. While without `vim9script` it would
|
|
|
|
be available as `g:myvar` from any other script and function.
|
|
|
|
|
|
|
|
The variables at the file level are very much like the script-local "s:"
|
2020-04-20 19:52:53 +02:00
|
|
|
variables in legacy Vim script, but the "s:" is omitted. And they cannot be
|
|
|
|
deleted.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-04-20 19:52:53 +02:00
|
|
|
In Vim9 script the global "g:" namespace can still be used as before. And the
|
|
|
|
"w:", "b:" and "t:" namespaces. These have in common that variables are not
|
|
|
|
declared and they can be deleted.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
A side effect of `:vim9script` is that the 'cpoptions' option is set to the
|
|
|
|
Vim default value, like with: >
|
|
|
|
:set cpo&vim
|
|
|
|
One of the effects is that |line-continuation| is always enabled.
|
|
|
|
The original value of 'cpoptions' is restored at the end of the script.
|
|
|
|
|
|
|
|
|
|
|
|
Export ~
|
|
|
|
*:export* *:exp*
|
2020-07-26 17:00:44 +02:00
|
|
|
Exporting an item can be written as: >
|
2020-01-26 15:56:19 +01:00
|
|
|
export const EXPORTED_CONST = 1234
|
|
|
|
export let someValue = ...
|
|
|
|
export def MyFunc() ...
|
|
|
|
export class MyClass ...
|
|
|
|
|
|
|
|
As this suggests, only constants, variables, `:def` functions and classes can
|
2020-07-26 17:00:44 +02:00
|
|
|
be exported. {classes are not implemented yet}
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-06-14 17:29:55 +02:00
|
|
|
*E1042*
|
|
|
|
`:export` can only be used in Vim9 script, at the script level.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
Import ~
|
2020-06-21 22:12:03 +02:00
|
|
|
*:import* *:imp* *E1094*
|
2020-01-26 15:56:19 +01:00
|
|
|
The exported items can be imported individually in another Vim9 script: >
|
|
|
|
import EXPORTED_CONST from "thatscript.vim"
|
|
|
|
import MyClass from "myclass.vim"
|
|
|
|
|
|
|
|
To import multiple items at the same time: >
|
|
|
|
import {someValue, MyClass} from "thatscript.vim"
|
|
|
|
|
2020-02-04 22:53:05 +01:00
|
|
|
In case the name is ambiguous, another name can be specified: >
|
2020-01-26 15:56:19 +01:00
|
|
|
import MyClass as ThatClass from "myclass.vim"
|
|
|
|
import {someValue, MyClass as ThatClass} from "myclass.vim"
|
|
|
|
|
|
|
|
To import all exported items under a specific identifier: >
|
|
|
|
import * as That from 'thatscript.vim'
|
|
|
|
|
|
|
|
Then you can use "That.EXPORTED_CONST", "That.someValue", etc. You are free
|
|
|
|
to choose the name "That", but it is highly recommended to use the name of the
|
|
|
|
script file to avoid confusion.
|
|
|
|
|
2020-09-07 22:18:52 +02:00
|
|
|
`:import` can also be used in legacy Vim script. The imported items still
|
|
|
|
become script-local, even when the "s:" prefix is not given.
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
The script name after `import` can be:
|
|
|
|
- A relative path, starting "." or "..". This finds a file relative to the
|
|
|
|
location of the script file itself. This is useful to split up a large
|
|
|
|
plugin into several files.
|
|
|
|
- An absolute path, starting with "/" on Unix or "D:/" on MS-Windows. This
|
|
|
|
will be rarely used.
|
|
|
|
- A path not being relative or absolute. This will be found in the
|
|
|
|
"import" subdirectories of 'runtimepath' entries. The name will usually be
|
|
|
|
longer and unique, to avoid loading the wrong file.
|
|
|
|
|
|
|
|
Once a vim9 script file has been imported, the result is cached and used the
|
|
|
|
next time the same script is imported. It will not be read again.
|
|
|
|
*:import-cycle*
|
|
|
|
The `import` commands are executed when encountered. If that script (directly
|
|
|
|
or indirectly) imports the current script, then items defined after the
|
|
|
|
`import` won't be processed yet. Therefore cyclic imports can exist, but may
|
|
|
|
result in undefined items.
|
|
|
|
|
|
|
|
|
|
|
|
Import in an autoload script ~
|
|
|
|
|
|
|
|
For optimal startup speed, loading scripts should be postponed until they are
|
2020-02-04 22:53:05 +01:00
|
|
|
actually needed. A recommended mechanism:
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
1. In the plugin define user commands, functions and/or mappings that refer to
|
|
|
|
an autoload script. >
|
|
|
|
command -nargs=1 SearchForStuff call searchfor#Stuff(<f-args>)
|
|
|
|
|
|
|
|
< This goes in .../plugin/anyname.vim. "anyname.vim" can be freely chosen.
|
|
|
|
|
2020-08-15 18:55:18 +02:00
|
|
|
2. In the autoload script do the actual work. You can import items from
|
2020-01-26 15:56:19 +01:00
|
|
|
other files to split up functionality in appropriate pieces. >
|
|
|
|
vim9script
|
|
|
|
import FilterFunc from "../import/someother.vim"
|
|
|
|
def searchfor#Stuff(arg: string)
|
|
|
|
let filtered = FilterFunc(arg)
|
|
|
|
...
|
|
|
|
< This goes in .../autoload/searchfor.vim. "searchfor" in the file name
|
|
|
|
must be exactly the same as the prefix for the function name, that is how
|
|
|
|
Vim finds the file.
|
|
|
|
|
|
|
|
3. Other functionality, possibly shared between plugins, contains the exported
|
|
|
|
items and any private items. >
|
|
|
|
vim9script
|
|
|
|
let localVar = 'local'
|
2020-09-07 22:18:52 +02:00
|
|
|
export def FilterFunc(arg: string): string
|
2020-01-26 15:56:19 +01:00
|
|
|
...
|
|
|
|
< This goes in .../import/someother.vim.
|
|
|
|
|
2020-08-12 21:34:49 +02:00
|
|
|
When compiling a `:def` function and a function in an autoload script is
|
|
|
|
encountered, the script is not loaded until the `:def` function is called.
|
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
Import in legacy Vim script ~
|
|
|
|
|
2020-06-14 17:29:55 +02:00
|
|
|
If an `import` statement is used in legacy Vim script, the script-local "s:"
|
|
|
|
namespace will be used for the imported item, even when "s:" is not specified.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
==============================================================================
|
|
|
|
|
|
|
|
9. Rationale *vim9-rationale*
|
|
|
|
|
|
|
|
The :def command ~
|
|
|
|
|
2020-08-15 18:55:18 +02:00
|
|
|
Plugin writers have asked for a much faster Vim script. Investigations have
|
2020-02-04 22:53:05 +01:00
|
|
|
shown that keeping the existing semantics of function calls make this close to
|
2020-01-26 15:56:19 +01:00
|
|
|
impossible, because of the overhead involved with calling a function, setting
|
|
|
|
up the local function scope and executing lines. There are many details that
|
|
|
|
need to be handled, such as error messages and exceptions. The need to create
|
|
|
|
a dictionary for a: and l: scopes, the a:000 list and several others add too
|
|
|
|
much overhead that cannot be avoided.
|
|
|
|
|
|
|
|
Therefore the `:def` method to define a new-style function had to be added,
|
|
|
|
which allows for a function with different semantics. Most things still work
|
|
|
|
as before, but some parts do not. A new way to define a function was
|
|
|
|
considered the best way to separate the old-style code from Vim9 script code.
|
|
|
|
|
|
|
|
Using "def" to define a function comes from Python. Other languages use
|
|
|
|
"function" which clashes with legacy Vim script.
|
|
|
|
|
|
|
|
|
|
|
|
Type checking ~
|
|
|
|
|
|
|
|
When compiling lines of Vim commands into instructions as much as possible
|
|
|
|
should be done at compile time. Postponing it to runtime makes the execution
|
|
|
|
slower and means mistakes are found only later. For example, when
|
|
|
|
encountering the "+" character and compiling this into a generic add
|
|
|
|
instruction, at execution time the instruction would have to inspect the type
|
|
|
|
of the arguments and decide what kind of addition to do. And when the
|
|
|
|
type is dictionary throw an error. If the types are known to be numbers then
|
|
|
|
an "add number" instruction can be used, which is faster. The error can be
|
|
|
|
given at compile time, no error handling is needed at runtime.
|
|
|
|
|
|
|
|
The syntax for types is similar to Java, since it is easy to understand and
|
2020-08-15 18:55:18 +02:00
|
|
|
widely used. The type names are what were used in Vim before, with some
|
2020-01-26 15:56:19 +01:00
|
|
|
additions such as "void" and "bool".
|
|
|
|
|
|
|
|
|
2020-06-14 17:29:55 +02:00
|
|
|
Compiling functions early ~
|
|
|
|
|
|
|
|
Functions are compiled when called or when `:defcompile` is used. Why not
|
|
|
|
compile them early, so that syntax and type errors are reported early?
|
|
|
|
|
|
|
|
The functions can't be compiled right away when encountered, because there may
|
|
|
|
be forward references to functions defined later. Consider defining functions
|
|
|
|
A, B and C, where A calls B, B calls C, and C calls A again. It's impossible
|
|
|
|
to reorder the functions to avoid forward references.
|
|
|
|
|
|
|
|
An alternative would be to first scan through the file to locate items and
|
2020-06-21 22:12:03 +02:00
|
|
|
figure out their type, so that forward references are found, and only then
|
2020-06-14 17:29:55 +02:00
|
|
|
execute the script and compile the functions. This means the script has to be
|
|
|
|
parsed twice, which is slower, and some conditions at the script level, such
|
|
|
|
as checking if a feature is supported, are hard to use. An attempt was made
|
|
|
|
to see if it works, but it turned out to be impossible to make work nicely.
|
|
|
|
|
|
|
|
It would be possible to compile all the functions at the end of the script.
|
|
|
|
The drawback is that if a function never gets called, the overhead of
|
|
|
|
compiling it counts anyway. Since startup speed is very important, in most
|
|
|
|
cases it's better to do it later and accept that syntax and type errors are
|
|
|
|
only reported then. In case these errors should be found early, e.g. when
|
|
|
|
testing, the `:defcompile` command will help out.
|
|
|
|
|
|
|
|
|
|
|
|
TypeScript syntax and semantics ~
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
Script writers have complained that the Vim script syntax is unexpectedly
|
|
|
|
different from what they are used to. To reduce this complaint popular
|
2020-06-14 17:29:55 +02:00
|
|
|
languages are used as an example. At the same time, we do not want to abandon
|
|
|
|
the well-known parts of legacy Vim script.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
Since Vim already uses `:let` and `:const` and optional type checking is
|
|
|
|
desirable, the JavaScript/TypeScript syntax fits best for variable
|
2020-09-07 22:18:52 +02:00
|
|
|
declarations: >
|
|
|
|
const greeting = 'hello' # string type is inferred
|
2020-01-26 15:56:19 +01:00
|
|
|
let name: string
|
|
|
|
...
|
|
|
|
name = 'John'
|
|
|
|
|
|
|
|
Expression evaluation was already close to what JavaScript and other languages
|
|
|
|
are doing. Some details are unexpected and can be fixed. For example how the
|
|
|
|
|| and && operators work. Legacy Vim script: >
|
2020-09-14 21:39:44 +02:00
|
|
|
let value = 44
|
2020-01-26 15:56:19 +01:00
|
|
|
...
|
2020-09-14 21:39:44 +02:00
|
|
|
let result = value || 0 # result == 1
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-08-15 18:55:18 +02:00
|
|
|
Vim9 script works like JavaScript/TypeScript, keep the value: >
|
2020-09-14 21:39:44 +02:00
|
|
|
let value = 44
|
2020-01-26 15:56:19 +01:00
|
|
|
...
|
2020-09-14 21:39:44 +02:00
|
|
|
let result = value || 0 # result == 44
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-09-07 22:18:52 +02:00
|
|
|
There is no intention to completely match TypeScript syntax and semantics. We
|
|
|
|
just want to take those parts that we can use for Vim and we expect Vim users
|
2020-09-14 21:39:44 +02:00
|
|
|
will be happy with. TypeScript is a complex language with its own advantages
|
|
|
|
and disadvantages. To get an idea of the disadvantages read the book:
|
|
|
|
"JavaScript: The Good Parts". Or find the article "TypeScript: the good
|
|
|
|
parts" and read the "Things to avoid" section.
|
|
|
|
|
|
|
|
People used to other languages (Java, Python, etc.) will also find things in
|
|
|
|
TypeScript that they do not like or do not understand. We'll try to avoid
|
|
|
|
those things.
|
|
|
|
|
|
|
|
Specific items from TypeScript we avoid:
|
|
|
|
- Overloading "+", using it both for addition and string concatenation. This
|
|
|
|
goes against legacy Vim script and often leads to mistakes. For that reason
|
|
|
|
we will keep using ".." for string concatenation. Lua also uses ".." this
|
|
|
|
way. And it allows for conversion to string for more values.
|
|
|
|
- TypeScript can use an expression like "99 || 'yes'" in a condition, but
|
|
|
|
cannot assign the value to a boolean. That is inconsistent and can be
|
|
|
|
annoying. Vim recognizes an expression with && or || and allows using the
|
|
|
|
result as a bool.
|
|
|
|
- TypeScript considers an empty string as Falsy, but an empty list or dict as
|
|
|
|
Truthy. That is inconsistent. In Vim an empty list and dict are also
|
|
|
|
Falsy.
|
|
|
|
- TypeScript has various "Readonly" types, which have limited usefulness,
|
|
|
|
since a type cast can remove the immutable nature. Vim locks the value,
|
|
|
|
which is more flexible, but is only checked at runtime.
|
2020-09-07 22:18:52 +02:00
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
Import and Export ~
|
|
|
|
|
|
|
|
A problem of legacy Vim script is that by default all functions and variables
|
|
|
|
are global. It is possible to make them script-local, but then they are not
|
2020-09-07 22:18:52 +02:00
|
|
|
available in other scripts. This defies the concept of a package that only
|
|
|
|
exports selected items and keeps the rest local.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
2020-08-15 18:55:18 +02:00
|
|
|
In Vim9 script a mechanism very similar to the JavaScript import and export
|
2020-01-26 15:56:19 +01:00
|
|
|
mechanism is supported. It is a variant to the existing `:source` command
|
|
|
|
that works like one would expect:
|
|
|
|
- Instead of making everything global by default, everything is script-local,
|
|
|
|
unless exported.
|
2020-09-07 22:18:52 +02:00
|
|
|
- When importing a script the symbols that are imported are explicitly listed,
|
|
|
|
avoiding name conflicts and failures if functionality is added later.
|
2020-01-26 15:56:19 +01:00
|
|
|
- The mechanism allows for writing a big, long script with a very clear API:
|
|
|
|
the exported function(s) and class(es).
|
|
|
|
- By using relative paths loading can be much faster for an import inside of a
|
|
|
|
package, no need to search many directories.
|
|
|
|
- Once an import has been used, it can be cached and loading it again can be
|
|
|
|
avoided.
|
|
|
|
- The Vim-specific use of "s:" to make things script-local can be dropped.
|
|
|
|
|
2020-06-14 17:29:55 +02:00
|
|
|
When sourcing a Vim9 script from a legacy script, only the items defined
|
|
|
|
globally can be used, not the exported items. Alternatives considered:
|
|
|
|
- All the exported items become available as script-local items. This makes
|
2020-09-07 22:18:52 +02:00
|
|
|
it uncontrollable what items get defined and likely soon leads to trouble.
|
2020-06-14 17:29:55 +02:00
|
|
|
- Use the exported items and make them global. Disadvantage is that it's then
|
|
|
|
not possible to avoid name clashes in the global namespace.
|
|
|
|
- Completely disallow sourcing a Vim9 script, require using `:import`. That
|
|
|
|
makes it difficult to use scripts for testing, or sourcing them from the
|
|
|
|
command line to try them out.
|
2020-09-07 22:18:52 +02:00
|
|
|
Note that you can also use `:import` in legacy Vim script, see above.
|
2020-06-14 17:29:55 +02:00
|
|
|
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
Classes ~
|
|
|
|
|
|
|
|
Vim supports interfaces to Perl, Python, Lua, Tcl and a few others. But
|
2020-09-07 22:18:52 +02:00
|
|
|
these interfaces have never become widespread. When Vim 9 was designed a
|
|
|
|
decision was made to phase out these interfaces and concentrate on Vim script,
|
|
|
|
while encouraging plugin authors to write code in any language and run it as
|
|
|
|
an external tool, using jobs and channels.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
Still, using an external tool has disadvantages. An alternative is to convert
|
|
|
|
the tool into Vim script. For that to be possible without too much
|
|
|
|
translation, and keeping the code fast at the same time, the constructs of the
|
|
|
|
tool need to be supported. Since most languages support classes the lack of
|
2020-09-07 22:18:52 +02:00
|
|
|
support for classes in Vim is then a problem.
|
2020-01-26 15:56:19 +01:00
|
|
|
|
|
|
|
Previously Vim supported a kind-of object oriented programming by adding
|
|
|
|
methods to a dictionary. With some care this could be made to work, but it
|
|
|
|
does not look like real classes. On top of that, it's very slow, because of
|
|
|
|
the use of dictionaries.
|
|
|
|
|
|
|
|
The support of classes in Vim9 script is a "minimal common functionality" of
|
2020-09-07 22:18:52 +02:00
|
|
|
class support in most languages. It works much like Java, which is the most
|
2020-01-26 15:56:19 +01:00
|
|
|
popular programming language.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
vim:tw=78:ts=8:noet:ft=help:norl:
|