-
### Steps to reproduce
* Add some text properties with `text_align: "above"`
* Delete property type
```vim
new
set bt=nofile number
let @@ = "=-=-=-=\n"
norm 5P
call prop_type_add("test", …
ghost updated
2 months ago
-
### Steps to reproduce
the left odd things in vim9 script type, just a mark to @yegappan
// refer: https://github.com/vim/vim/issues/13582
```vim
vim9script
var a: any
echom typename(a) # n…
-
### Steps to reproduce
Prerequisites: have two files in your home directory, "provavimrc.vim" with the following contents
```
vim9script
set hidden
import autoload './funzioni.vim'
nnore…
-
### Steps to reproduce
After [`818c641b6`](https://github.com/vim/vim/commit/818c641b6fac73b574a2b760213f515cee9a3c8e), some `enum` body items are no longer matched:
- the `static` and `public` modi…
-
### Steps to reproduce
1. `vim -Nu NONE`
2. `set ft=vim`
3. `syn on`
Paste following text:
```
vim9script
import autoload 'dir/action.vim'
command! -buffer -nargs=1 -complete=custom,action…
-
I'm able to select a hunk for a conflict from either 1 or 2 but can't seem to add both files' hunks to the result file.
Is this possible?
Blasz updated
4 months ago
-
Hi,
What is the best way to manage VimL and Vim9 coexistence?
I want to update my plugins to allow them to take advantage of vim9 features, but I don't want to exclude VimL users, is there a …
-
**Describe the bug**
In Vim9 script, an error raised by a custom Ex command doesn't always contain enough information.
**To Reproduce**
Run this shell command:
vim -Nu NONE -S
-
### Steps to reproduce
Source the given script and get.
```
Error detected while compiling /home/err/work/bugs/vim/defcompile/t.vim[7]..function 43_F1:
line 1:
E117: Unknown function: F2
```
…
-
### Steps to reproduce
1. `vim -Nu NONE`
2. Add following lines
```
vim9script
# hello world
prop_type_add('VTError', {highlight: 'Error'})
prop_add(3, 10, {text: '@@@@@@', type: 'VTError'})
…