Yegappan Lakshmanan
Yegappan Lakshmanan
When the asyncrun plugin is updating a quickifx list asynchronously, some other Vim plugin or user can create/modify the quickfix list resulting in the asyncrun plugin updating the incorrect quickfix...
When the syntastic plugin is updating a quickifx list asynchronously, some other Vim plugin or user can create/modify the quickfix list resulting in the syntastic plugin updating the incorrect quickfix...
Add support for Vim9 object methods len(), empty() and string().
I created a PR to port this plugin from Neovim to Vim and include it natively in Vim: https://github.com/vim/vim/pull/6414 Bram asked the license for this plugin. Can you include a...
I am trying to use covimerage to collect the code coverage information for the Vim9 LSP plugin. Currently the script fails: https://github.com/yegappan/lsp/runs/4907890136?check_suite_focus=true. Can covimerage be enhanced to support Vim9 scripts?
Add a new 'findprg' option to specify the external command to use for the `:find` command.
A generic function definition: def Foo(arg1: A, arg2: B): B var x: A = arg1 return arg2 enddef A generic function invocation: Foo('abc', 10) The following are supported: 1. Generic...