vim-vimlparser icon indicating copy to clipboard operation
vim-vimlparser copied to clipboard

Vim script parser

Results 42 vim-vimlparser issues
Sort by recently updated
recently updated
newest added
trafficstars

[vspec](https://github.com/kana/vim-vspec) is a vim testing tool. It uses vim syntax with [additional builtin commands](https://github.com/kana/vim-vspec/blob/1438b7987892a86e27071b4e90358367efb1cd52/doc/vspec.txt) (`describe`, `it`, `before` `after`, `context`). This adds basic support for vspec - that is, by using...

Fixes https://github.com/vim-jp/vim-vimlparser/issues/79.

bug

I add `searchcount` function in this repo. Could you check this PR?

Lamdas in `map` functions are cause a parsing error. For example, parsing `call map(getbufinfo(), { _, val -> 1})` generates a parsing error despite being valid VimL.

I couldn't find this project uploaded to https://pypi.org/ or any setup.py / setup.cfg file for it. How can I depend on it from another python tool with the dependency properly...

https://github.com/vim/vim/pull/5916 [8.2.0578](https://github.com/vim/vim/commit/6c2b7b8055b96463f78abb70f58c4c6d6d4b9d55)

missing

Run these scripts periodically using [GitHub Actions Schedule](https://help.github.com/ja/actions/reference/events-that-trigger-workflows) * scripts/update_builtin_commands.sh * scripts/update_builtin_functions.sh

enhancement

```vim let is = 42 ``` ``` vimlparser: unexpected token: is: line 75 col 5 ``` ```vim let isnot = 42 ``` ``` vimlparser: unexpected token: isnot: line 75 col...

bug

~Is this official right syntax?~ @rbtnn found it in vim help. https://github.com/vim/vim/blob/30d53e2c11e670845830bdfc29bf8c1615df61a8/runtime/doc/eval.txt#L1513

## Problem ```vim let ``` is parsed as ``` (excmd "let") ``` ## Expected ``` (let) ```

bug