-
-
More often I find myself switching between "one result" and and "original two". I am copying the changes from "Original two" into "one result". The diff between "original result" is not very help…
-
Thank you for working on VsVim for all these years! It's smooth to use and makes editing that much nicer. It gets very close to the native vim experience and I'm very grateful.
**Feature category**…
-
### Steps to reproduce
1. Put the following in ~/.vim/autoload/autoloaded_script.vim:
```
vim9script
export class My_class
this.hello: string
endclass
export def Return_my_class(): My_clas…
-
### Steps to reproduce
In the following, in the child class, the method String() returns a different type. No error.
```vim
vim9script
class A
def String(): string
return 'S'
…
-
## Steps to reproduce
`a.vim`:
```vim
vim9script
def F(a: string = v:none)
var b = a
enddef
defcompile
F()
```
Execute `vim --clean -S a.vim`, get `E685: Internal error: copy_tv(…
91khr updated
6 months ago
-
### Steps to reproduce
If I populate a buffer with `setline()` and then I make some changes, each change becomes an undo step as expected.
If the buffer is populated from the output of a command s…
-
## Steps to reproduce
Execute following script:
```vim
vim9script
(() => {
keys({
})
})()
```
Get `E723: Missing end of Dictionary '}': [end of lines]` on line 1 of the lambda.
…
91khr updated
8 months ago
-
I looked at a build based on today's release and don't see vim9-syntax in there. I looked prompted by #13047 (which you commented on).
Is there a reason this isn't available. I'd be very unhappy if…
-
### Steps to reproduce
Note this is `vim-9.1` behavior.
Came across this sorting out some recent issues. I was surprised, wrote the test in `Java` and got the expected result.
@dkearns what do yo…