| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-10-11 | highlights(cpp): add alternative operator names | mliszcz | |
| These keywords are now supported by the parser. See: https://github.com/tree-sitter/tree-sitter-cpp/pull/179 | |||
| 2022-08-03 | Split func/method definition from calls in C++ highlighting queries | lfenzo | |
| 2022-07-28 | highlights(c/cpp): move attributes to C (again) | Stephan Seitz | |
| Let's hope that this time the C tests pass, also for the built-in C parser. | |||
| 2022-05-07 | highlights(cpp): make "::" `@punctuation.delimiter` | Stephan Seitz | |
| Fixes #2902 | |||
| 2022-03-02 | highlights(cpp): Add operator cast highlight | Fabian Viöl | |
| See https://en.cppreference.com/w/cpp/language/cast_operator for reference. | |||
| 2022-02-09 | highlights(cpp): Highlight method with nested qualified_identifier | Fabian Viöl | |
| 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 | |||
| 2022-02-05 | indents(cpp): indent at field_initializer_list | Stephan Seitz | |
| 2022-01-29 | highlights(c/cpp): highlight case labels as constants | Stephan Seitz | |
| 2022-01-29 | highlights(cpp): fix function highlighting of Foo::bar::baz() | Stephan Seitz | |
| Fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/2396 | |||
| 2022-01-21 | feat: rewrite indent module | Munif Tanjim | |
| 2022-01-17 | highlights(cpp): add support for "<=>", "constinit", "consteval" | Stephan Seitz | |
| 2022-01-16 | locals(cpp): add support for concepts | Stephan Seitz | |
| 2022-01-16 | highlights(cpp): add support for concepts | Stephan Seitz | |
| Requires https://github.com/tree-sitter/tree-sitter-cpp/pull/138 | |||
| 2021-11-23 | Prefer lua-match over match | Lewis Russell | |
| as string.find is much quicker than vim.regex:match* | |||
| 2021-11-02 | chore: fix typos | Dundar Göc | |
| 2021-10-20 | highlights(cpp): highlight literal_suffix as `@operator` | Stephan Seitz | |
| 2021-09-27 | cpp: highlight template method identifier as a method | John Drouhard | |
| 2021-09-26 | cpp: fix locals.scm from breaking change in tree-sitter-cpp | John Drouhard | |
| 2021-09-26 | cpp: update lockfile.json and fix for breaking changes | John Drouhard | |
| 2021-09-17 | test | Stephan Seitz | |
| 2021-09-17 | highlights(c/cpp): react to upstream changes to attributes | Stephan Seitz | |
| 2021-09-17 | highlights(cpp): add support for coroutines | Stephan Seitz | |
| 2021-07-14 | folds(cpp): highlight scoped enums | Stephan Seitz | |
| 2021-07-06 | highlights(cpp): add static_assert | Stephan Seitz | |
| 2021-06-10 | c++ highlights: don't capture all identifiers with uppercase initials as types | Alex Chen | |
| 2021-05-20 | indents(c/cpp): let C++ use the C indents and add class_specifier | Stephan Seitz | |
| Fixes #1320 | |||
| 2021-05-18 | highlights(c/c++): "..." also exists in C (variadic macros) | Stephan Seitz | |
| 2021-05-07 | Revert "Comment: use `@combined` to create just one tree per buffer (#1252)" | Santos Gallegos | |
| This reverts commit 4a7a713c527f57c355bc817f16fc6d955b8cce9b. | |||
| 2021-04-28 | Comment: use `@combined` to create just one tree per buffer (#1252) | Santos Gallegos | |
| * 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 | |||
| 2021-04-26 | highlights(cpp): highlight namespaces in using declartions | Stephan Seitz | |
| 2021-04-26 | highlights(cpp): reduce number of regexes | Stephan Seitz | |
| 2021-04-26 | highlights(cpp): avoid overwriting C CONSTANTS | Stephan Seitz | |
| 2021-03-16 | Fix C++ locals | Stephan Seitz | |
| 2021-03-16 | Fix ocaml queries | Stephan Seitz | |
| 2021-03-16 | Mark parsers with NPM dependency | Stephan Seitz | |
| 2021-03-12 | Add comment parser to highlight comment tags (#893) | Santos Gallegos | |
| Closes #236 | |||
| 2021-03-01 | feat: use @ignore for comments and multiline strings | elianiva | |
| 2021-02-10 | C/CPP: add injections for macros | Santos Gallegos | |
| 2021-01-29 | highlights(cpp): fix constructor call highlighting | Stephan Seitz | |
| Address #883 | |||
| 2021-01-14 | feat: added more indent queries | elianiva | |
| 2021-01-08 | C++ highlights: Fix destructor highlighting | Stephan Seitz | |
| Field is not "name" | |||
| 2020-11-20 | c/cpp highlights: Fix field declarations and initializers | John Drouhard | |
| After a recent fix for #446, declarations in class/struct definitions stopped being marked as properties or methods. This fix will add property highlights to field declarations, and method highlight to field function declarations. | |||
| 2020-11-18 | Do not highlight Uppercase function as type | Stephan Seitz | |
| 2020-11-18 | fix(predicates): Fix #446: highlight property only if not a method | Stephan Seitz | |
| 2020-10-13 | C++ highlights: highlight all kinds of optional parameters | Stephan Seitz | |
| declarator can be a identifier, a reference or a pointer | |||
| 2020-10-11 | feat(queries): modeline mechanism for base langs | Thomas Vigouroux | |
| This implements https://github.com/neovim/neovim/pull/13059#issuecomment-704414189 This behaves like modelines and remove the use of the base_language map. Also, this allows to fine-tune what we actually want to include per query, which is better IMO. | |||
| 2020-10-10 | fix(highlights): Add TSNamespace highlight | Stephan Seitz | |
| Start adding highlights for - C++ - Rust (including other scoped_identifier/scoped_type_identifier fixes) - JS (only namespace_import) Addresses #516 | |||
| 2020-10-04 | Remove textobjects module | Stephan Seitz | |
| 2020-09-19 | Add @keyword.operator for operators that are English words and add ↵ | Stephan Seitz | |
| @exception for Java/JS | |||
| 2020-09-14 | Fix #307: Use and document TSVariable/TSVariableBuiltin in all languages | Stephan Seitz | |
