diff options
author | Bram Moolenaar <Bram@vim.org> | 2023-02-02 13:59:48 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2023-02-02 13:59:48 +0000 |
commit | be4e01637e71c8d5095c33b9861fd70b41476732 (patch) | |
tree | d521021e32c070a7c7a913fc96a14b3de8c81afe /README_VIM9.md | |
parent | 685bf83b73d0fe6fd36bb2949bebd6aae66a139e (diff) | |
download | vim-git-be4e01637e71c8d5095c33b9861fd70b41476732.tar.gz |
Update runtime files.
Diffstat (limited to 'README_VIM9.md')
-rw-r--r-- | README_VIM9.md | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/README_VIM9.md b/README_VIM9.md index b3ca49f09..c9ce73a2d 100644 --- a/README_VIM9.md +++ b/README_VIM9.md @@ -2,18 +2,17 @@ # What is Vim9? -This is an experimental side of [Vim](https://github.com/vim/vim). -It explores ways of making Vim script faster and better. +This is a new syntax for Vim script that was introduced with Vim 9.0. +It intends making Vim script faster and better. -WARNING: The Vim9 script features are still under development, anything can -break! # Why Vim9? ## 1. FASTER VIM SCRIPT The third item on the poll results of 2018, after popup windows and text -properties, is faster Vim script. So how do we do that? +properties, both of which have been implemented, is faster Vim script. +So how do we do that? I have been throwing some ideas around, and soon came to the conclusion that the current way functions are called and executed, with @@ -53,7 +52,7 @@ we can gain, and also that Vim script can be faster than builtin interfaces. LuaJit is much faster at Lua-only instructions. In practice the script would -not do something useless as counting but change the text. For example, +not do something useless counting, but change the text. For example, reindent all the lines: ``` vim |