summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-07-19SimplifyOliver Marshall
2021-07-19Add some comments & TODOsOliver Marshall
2021-07-19First pass at def-likesOliver Marshall
2021-07-19Match % variablesOliver Marshall
2021-07-19Add more operatorsOliver Marshall
2021-07-19Add some TODOsOliver Marshall
2021-07-19Highlight splicing operatorsOliver Marshall
2021-07-19All the other stuff, includes:Oliver Marshall
- Changing huge 'match's to 'any-of's - Roughly organising the queries into sections - Add some TODOs for more improvements - Comment out def-like and call queries as they overlap too much - Change the captures to use better (imo) groups - Make with-.* and when-.* always highlight like a builtin
2021-07-19Reorganise slightlyOliver Marshall
2021-07-19Add YANG parserTomas Sandven
2021-07-19Use terraform ft for tf and tfvarsKhue Doan
2021-07-19Support HCL file type detectionKhue Doan
2021-07-19feat(mergify): delay mergify merging by one dayThomas Vigouroux
2021-07-18Update lockfile.jsonGitHub
2021-07-18fix: only automerge when then is two approvalsThomas Vigouroux
2021-07-18fix(mergify): only merge when there is no review requestsThomas Vigouroux
2021-07-18Folds: remove ending marks for folds; they only confuse vim when multiple ↵Andrew He
closes on the same line are expected
2021-07-18c: don't treat uppercase functions as constantsGregory Anders
A macro function such as #define FOO(x) ... should be highlighted with @function.macro, even though the name is in all-caps (which would otherwise be treated as a constant). Similarly, call sites of such functions, e.g. int y = FOO(x); should be highlighted with @function instead of @constant. This is as simple as moving the query definition for macro functions after the query definition for constants.
2021-07-18fix(elixir): add missing possible parametersŁukasz Niemier
2021-07-18Re-attach module when the file type is changedSantos Gallegos
Requires https://github.com/neovim/neovim/pull/14995 Closes https://github.com/nvim-treesitter/nvim-treesitter/issues/1249
2021-07-18ci(mergify): don't use queuesThomas Vigouroux
2021-07-18ci(Mergify): configuration updateThomas Vigouroux
2021-07-18ci(Mergify): configuration updateThomas Vigouroux
2021-07-18chore: setup mergifyThomas Vigouroux
2021-07-18folds(rust): Fold trait definitions (#1582)agarof
2021-07-14folds(cpp): highlight scoped enumsStephan Seitz
2021-07-14c(folds): fold on enumsStephan Seitz
2021-07-14create TSTagAttribute highlight group (#1575)Sean Baildon
references #1572
2021-07-14Update lockfile.jsonGitHub
2021-07-14add @tag.attribute for html like attributeslmlorca
2021-07-13doc: be more explicit about additional_vim_regex_highlighting (#1561)Stephan Seitz
2021-07-13Update lockfile.jsonGitHub
2021-07-13Query: update highlight queries (#1553)Santos Gallegos
This is to match https://github.com/nvim-treesitter/tree-sitter-query/pull/15
2021-07-11Highlights: define string.special (#1551)Santos Gallegos
* Highlights: define string.special This was in our CONTRIBUTING.md file, but wasn't defined. Fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/1405 * Use string.escape
2021-07-11New stylua version (#1555)Stephan Seitz
2021-07-11Update lockfile.json (#1554)github-actions[bot]
Co-authored-by: GitHub <noreply@github.com>
2021-07-11Python: fix class highlights (#1548)Santos Gallegos
2021-07-11Update lockfile.jsonGitHub
2021-07-10highlights(jsx): fix constant identifier (#1434)Munif Tanjim
2021-07-09[elixir] Add folds (#1543)Mitchell Hanberg
2021-07-09downcase predicate: nil protectionSantos Gallegos
get_node_text could be nil if the range is invalid. With https://github.com/neovim/neovim/pull/15030/ this fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/1531
2021-07-09Add info about queries and filetype detection to Adding Parsers section of ↵Andrew Helwer
README (#1533) * Updated Adding Parsers section of README Added info about necessity of manually adding queries Added info about filetype detection * Updated troubleshooting section Added suggestion to check for missing queries or filetype detection
2021-07-08highlights(rust): Reorder macro queriesSergio Alejandro Vargas
Derive macros have to be defined before attribute macros to highlight them properly. See #570
2021-07-08highlights(zig): highlight true,falseStephan Seitz
2021-07-08Update lockfile.jsonGitHub
2021-07-08Folds: support 'foldminlines'Munif Tanjim
2021-07-07remove packer and nomad from hcl.used_by (#1527)Michael Hoffmann
2021-07-07Update ledger highlightsCédric Barreteau
Add `check` keyword.
2021-07-07Lua: highlight function definitionsSantos Gallegos
In lua ```lua function foo() end ``` is syntax sugar for ```lua foo = function() end ```
2021-07-07Update lockfile.jsonGitHub