| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | fix(cpp): incorrect indent of class with opening { on new line (#5811) | Jędrzej Boczar | 2023-12-22 | 1 | -2/+0 |
| | | |||||
| * | fix(cpp): remove `@field` for identifiers with `_` prefix (#5731) | HumblePresent | 2023-11-27 | 1 | -1/+1 |
| | | |||||
| * | fix(cpp): highlight constexpr | Amaan Qureshi | 2023-11-10 | 1 | -0/+1 |
| | | |||||
| * | feat: add Doxygen | Amaan Qureshi | 2023-08-26 | 1 | -0/+4 |
| | | |||||
| * | chore(c-family): inject all preproc args again | Amaan Qureshi | 2023-08-13 | 1 | -11/+1 |
| | | |||||
| * | chore(injections)!: update injection syntax to 0.9 | Pham Huy Hoang | 2023-08-12 | 1 | -7/+16 |
| | | | | | | | | | | Since 0.9, @lang syntax is still available as fallback but will soon be deprecated. Because of that, new syntax should be adopted once 0.9 becomes the baseline requirements for nvim-treesitter - update health check - update doc | ||||
| * | fix(c-family): inject into preproc args in preproc defs when it spans ↵ | Amaan Qureshi | 2023-08-11 | 1 | -0/+2 |
| | | | | | multiple lines only | ||||
| * | fix(cpp): update injections from C | Amaan Qureshi | 2023-08-10 | 1 | -1/+2 |
| | | |||||
| * | fix(c)!: update C, CPP parsers and queries | Amaan Qureshi | 2023-07-27 | 1 | -1/+1 |
| | | | | also update derived parsers (arduino, cuda, glsl, hlsl, ispc, objc) | ||||
| * | lint(locals): use `#set!` to keep query linter happy | Christian Clason | 2023-06-22 | 1 | -3/+3 |
| | | |||||
| * | fear(cpp): highlight brackets in template_parameter_list | fab4100 | 2023-05-20 | 1 | -0/+3 |
| | | |||||
| * | perf: remove match where possible | Amaan Qureshi | 2023-04-21 | 1 | -7/+7 |
| | | |||||
| * | feat(cpp): improve function.call to support any level of nesting for ↵ | John Drouhard | 2023-04-15 | 1 | -33/+68 |
| | | | | | qualified identifiers | ||||
| * | feat(cpp): more distinction between function/method declaration and call | Jaehwang Jung | 2023-04-08 | 1 | -7/+21 |
| | | |||||
| * | feat(cpp): simplify namespace query rules now that parser is a bit more ↵ | John Drouhard | 2023-03-27 | 2 | -5/+6 |
| | | | | | consistent | ||||
| * | use indent.X syntax for captures and properties of set directives | George Harker | 2023-03-24 | 1 | -4/+5 |
| | | | | | | | | | update CONTRIBUTING.md adjust indents for bass fix doc capture comment | ||||
| * | fix(cpp): nullptr should be `@constant.builtin` | Amaan Qureshi | 2023-03-19 | 1 | -1/+1 |
| | | |||||
| * | feat!: add `@keyword.coroutine` capture | Amaan Qureshi | 2023-03-03 | 1 | -6/+9 |
| | | |||||
| * | injections(cpp): add injections for raw string literals | John Drouhard | 2023-01-09 | 1 | -0/+4 |
| | | | | | | | | | | | | | | the delimiter describes the language to use for the injection content ```cpp auto python_code = R"python( import os if __name__ == '__main__': print(os.name) )python"; ``` | ||||
| * | highlights(cpp): auto as @type.builtin | Aaron Rancsik | 2022-12-01 | 1 | -1/+3 |
| | | |||||
| * | highlights(cpp): use more specific groups | ObserverOfTime | 2022-11-26 | 1 | -10/+18 |
| | | |||||
| * | highlights(cpp): add alternative operator names | mliszcz | 2022-10-11 | 1 | -14/+11 |
| | | | | | | These keywords are now supported by the parser. See: https://github.com/tree-sitter/tree-sitter-cpp/pull/179 | ||||
| * | Split func/method definition from calls in C++ highlighting queries | lfenzo | 2022-08-03 | 1 | -4/+4 |
| | | |||||
| * | highlights(c/cpp): move attributes to C (again) | Stephan Seitz | 2022-07-28 | 1 | -2/+0 |
| | | | | | | Let's hope that this time the C tests pass, also for the built-in C parser. | ||||
| * | highlights(cpp): make "::" `@punctuation.delimiter` | Stephan Seitz | 2022-05-07 | 1 | -4/+3 |
| | | | | | Fixes #2902 | ||||
| * | highlights(cpp): Add operator cast highlight | Fabian Viöl | 2022-03-02 | 1 | -1/+2 |
| | | | | | | See https://en.cppreference.com/w/cpp/language/cast_operator for reference. | ||||
| * | highlights(cpp): Highlight method with nested qualified_identifier | Fabian Viöl | 2022-02-09 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | so that methods like these are correctly highlighted ```cpp class A { class B { void foo(); }; }; void A::B::foo() { // ^^^ } ``` This only increases the nesting level by one. AFAIK abritrary nesting is difficult to do with current queries. But this nesting is a pretty common case | ||||
| * | indents(cpp): indent at field_initializer_list | Stephan Seitz | 2022-02-05 | 1 | -0/+2 |
| | | |||||
| * | highlights(c/cpp): highlight case labels as constants | Stephan Seitz | 2022-01-29 | 1 | -0/+2 |
| | | |||||
| * | highlights(cpp): fix function highlighting of Foo::bar::baz() | Stephan Seitz | 2022-01-29 | 1 | -0/+10 |
| | | | | | Fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/2396 | ||||
| * | feat: rewrite indent module | Munif Tanjim | 2022-01-21 | 1 | -1/+2 |
| | | |||||
| * | highlights(cpp): add support for "<=>", "constinit", "consteval" | Stephan Seitz | 2022-01-17 | 1 | -1/+6 |
| | | |||||
| * | locals(cpp): add support for concepts | Stephan Seitz | 2022-01-16 | 1 | -0/+5 |
| | | |||||
| * | highlights(cpp): add support for concepts | Stephan Seitz | 2022-01-16 | 1 | -0/+4 |
| | | | | | Requires https://github.com/tree-sitter/tree-sitter-cpp/pull/138 | ||||
| * | Prefer lua-match over match | Lewis Russell | 2021-11-23 | 1 | -7/+7 |
| | | | | | as string.find is much quicker than vim.regex:match* | ||||
| * | chore: fix typos | Dundar Göc | 2021-11-02 | 1 | -2/+2 |
| | | |||||
| * | highlights(cpp): highlight literal_suffix as `@operator` | Stephan Seitz | 2021-10-20 | 1 | -0/+2 |
| | | |||||
| * | cpp: highlight template method identifier as a method | John Drouhard | 2021-09-27 | 1 | -0/+3 |
| | | |||||
| * | cpp: fix locals.scm from breaking change in tree-sitter-cpp | John Drouhard | 2021-09-26 | 1 | -7/+3 |
| | | |||||
| * | cpp: update lockfile.json and fix for breaking changes | John Drouhard | 2021-09-26 | 1 | -10/+6 |
| | | |||||
| * | test | Stephan Seitz | 2021-09-17 | 1 | -0/+2 |
| | | |||||
| * | highlights(c/cpp): react to upstream changes to attributes | Stephan Seitz | 2021-09-17 | 1 | -8/+5 |
| | | |||||
| * | highlights(cpp): add support for coroutines | Stephan Seitz | 2021-09-17 | 1 | -0/+3 |
| | | |||||
| * | folds(cpp): highlight scoped enums | Stephan Seitz | 2021-07-14 | 1 | -0/+3 |
| | | |||||
| * | highlights(cpp): add static_assert | Stephan Seitz | 2021-07-06 | 1 | -0/+1 |
| | | |||||
| * | c++ highlights: don't capture all identifiers with uppercase initials as types | Alex Chen | 2021-06-10 | 1 | -4/+0 |
| | | |||||
| * | indents(c/cpp): let C++ use the C indents and add class_specifier | Stephan Seitz | 2021-05-20 | 1 | -15/+4 |
| | | | | | Fixes #1320 | ||||
| * | highlights(c/c++): "..." also exists in C (variadic macros) | Stephan Seitz | 2021-05-18 | 1 | -1/+0 |
| | | |||||
| * | Revert "Comment: use `@combined` to create just one tree per buffer (#1252)" | Santos Gallegos | 2021-05-07 | 1 | -1/+1 |
| | | | | | This reverts commit 4a7a713c527f57c355bc817f16fc6d955b8cce9b. | ||||
| * | Comment: use `@combined` to create just one tree per buffer (#1252) | Santos Gallegos | 2021-04-28 | 1 | -1/+1 |
| | | | | | | | | | | | | | * Comment: use `@combined` to create just one tree per buffer There is no need to create a tree per line/block for comments. Should fix https://github.com/nvim-treesitter/nvim-treesitter/issues/1251 * Add injections for scss * Fix jsonc * Combine jsdoc | ||||
