-
I wonder why no one has every asked for this. vim9script has a few differences, e.g. you don not need to write call before functions anymore and this results in an error shown. It would be nice if vim…
-
**Describe the bug**
Using a function as intended in vim9script, without :call will result in `E492: Not an editor command:`
**To Reproduce**
Steps to reproduce the behavior:
```vim
vim9s…
dezza updated
2 years ago
-
The performance enhancements of compiled functions in vim9script are great, and they open up previously impractical plugin solutions.
I'm working on one at the moment, however, where the performanc…
-
For example:
```
E1263: cannot use name with # in Vim9 script, use export instead
```
-
Vimに導入されたばかりのvim9scriptについて議論しましょう。
* vim9scriptを叩いてバグを出す。
* vim9scriptの仕様について議論する。
* その他、vim9scriptに関すること何でも。
vim9scriptについては、[vim9.txt](https://github.com/vim/vim/blob/master/runtime/doc/vim…
-
Commenting Vim9 code works, but uncommenting it does nothing.
Only happens for indented code.
https://user-images.githubusercontent.com/717109/176473289-1353d1f2-2b55-4105-a358-ec705a1e01df.mp4
…
-
### Expected behaviour
No error
### Version of Vim
9.1.0845
### Environment
Bash
### Steps to reproduce
`E488: Trailing characters` is thrown in `list` inside autocmd block or com…
-
- compile all files of a project
- populate `quickfix`
In the vim9class spec it mentions difficulties in refactoring. I'm not enough
of a vim user to know what IDE-like tools are available for vi…
-
### Steps to reproduce
In `f1.vim` notice the statement `f3.F3(f2.F2())`. `f2.F2()` is executed before
`f3.F3()`; the disassembly below shows that. However, also notice in the
disassembly that `SOU…
-
https://vimhelp.org/vim9.txt.html#vim9-mix
```vim
" comments may go here
if !has('vim9script')
" legacy script commands go here
finish
endif
…