aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* fix: require_language is needed after installation to update Vim's language ↵Stephan Seitz2022-12-261-0/+1
| | | | | | table Fixes #4026
* fix: do `vim.treesitter.start()` on highlight module attachStephan Seitz2022-12-261-18/+20
| | | | Fixes #4026
* Update parsers: hlslGitHub2022-12-251-1/+1
|
* Fix(vue): Invalid match queriesLucario3872022-12-252-7/+35
|
* Fix(vue): Invalid match queriesLucario3872022-12-251-2/+2
|
* Fix `update_selection`Philip Gaudreau2022-12-251-9/+27
|
* add test fileLucario3872022-12-251-0/+41
|
* injections(vue): Update injection queriesLucario3872022-12-251-13/+41
|
* chore: update usage `vim.split` to new signatureStephan Seitz2022-12-251-1/+1
| | | | | | | | | | | | | Old usage was still working because of backward compatibility of nvim code: ```lua if type(kwargs) == 'boolean' then -- Support old signature for backward compatibility plain = kwargs else ``` `:h vim-split()` https://neovim.io/doc/user/lua.html#vim.split()
* highlights(c_sharp): add ">>>" ">>>="Stephan Seitz2022-12-241-0/+2
| | | | From upstream change https://github.com/tree-sitter/tree-sitter-c-sharp/pull/266/files
* Update parsers: c_sharp (#4023)github-actions[bot]2022-12-231-1/+1
| | | Co-authored-by: GitHub <noreply@github.com>
* Inherit folds for SCSS from CSSRishi2022-12-231-0/+1
|
* injections(nix): combine injections to work better with interpolationsfigsoda2022-12-232-1/+13
|
* highlights(nix): improve builtins and exceptions highlightsfigsoda2022-12-231-9/+21
|
* highlights(nix): add all builtinsfigsoda2022-12-231-98/+15
|
* highlights(nix): improve highlightsfigsoda2022-12-231-28/+120
|
* injections(nix): fix runCommand*figsoda2022-12-231-7/+7
|
* Update parsers: c_sharp (#4019)github-actions[bot]2022-12-231-1/+1
| | | Co-authored-by: GitHub <noreply@github.com>
* julia: update parser and highlights (#4016)Sergio A. Vargas2022-12-232-8/+4
| | | | - Replace `scoped_identifier` with `field_expression` in function names - Replace true and false with `boolean_literal`
* Update parsers: c_sharpGitHub2022-12-221-1/+1
|
* Fix vue injection queriesLucario3872022-12-221-2/+33
|
* Update parsers: ada, c_sharpGitHub2022-12-221-2/+2
|
* feat: add AdaEmmanuel Briot2022-12-226-0/+239
|
* injections(go): inject regex into some regexp functionsStephan Seitz2022-12-221-0/+12
|
* Update parsers: c_sharp, t32GitHub2022-12-221-1/+1
|
* Update parsers: c_sharpGitHub2022-12-211-1/+1
|
* feat(t32): initial supportxasc2022-12-2110-0/+371
|
* Update parsers: c_sharpGitHub2022-12-211-1/+1
|
* injections(yaml): fix injectionsfigsoda2022-12-212-3/+3
|
* ci: use builtin jq instead of downloading itdundargoc2022-12-211-4/+1
|
* Update parsers: vGitHub2022-12-211-1/+1
|
* fix(health): align the list of parsers when doing checkhealthdundargoc2022-12-211-2/+2
| | | | | Some parser names are too long for the given space, which shifts the features so they aren't in line.
* Update parsers: c_sharp, gdscript, sqlGitHub2022-12-211-3/+3
|
* csharp: update query to parser changeChristian Clason2022-12-201-1/+0
|
* Update parsers: c_sharp, jsonnet, queryGitHub2022-12-201-3/+3
|
* Update parsers: swiftGitHub2022-12-191-1/+1
|
* highlights(java): fix '!',param,global groupJosef Litoš2022-12-191-2/+5
|
* Update parsers: helpGitHub2022-12-181-1/+1
|
* ci: bump stylua action to v2dundargoc2022-12-171-1/+2
|
* Update parsers: astroGitHub2022-12-171-1/+1
|
* ci: bump action versionsdundargoc2022-12-175-12/+12
|
* Update parsers: c_sharp, luaGitHub2022-12-171-2/+2
|
* Update parsers: c_sharp, php, sqlGitHub2022-12-161-3/+3
|
* feat: allow to set keymappings to `false`Stephan Seitz2022-12-153-22/+26
| | | | Fixes #3954
* highlights(lua): use @method.callJaehwang Jung2022-12-151-1/+1
|
* ci: Add name of updated parsers to commit messageStephan Seitz2022-12-151-3/+8
| | | | Fixes #3962
* Update lockfile.json (#3976)github-actions[bot]2022-12-151-2/+2
| | | Co-authored-by: GitHub <noreply@github.com>
* utils: respect shellslash settingAttila Tajti2022-12-141-1/+1
| | | | Use '/' as path separator on Windows when shellslash is set.
* install: fix is_installed checks with shellslashAttila Tajti2022-12-141-2/+13
| | | | Convert paths to use backslashes on Windows.
* shell: respect shellslash option on WindowsAttila Tajti2022-12-141-5/+16
| | | | | | | Always use backlashes as path separators in commands when they are used in cmd.exe. Fixes #2844 #1965