| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-01-03 | Add maintainers for Julia | Stephan Seitz | |
| 2020-12-31 | add gdscript | TJ DeVries | |
| 2020-12-30 | Add SPARQL | BonaBeavis | |
| Signed-off-by: BonaBeavis <gordian.dziwis@gmail.com> | |||
| 2020-12-21 | Remove deprecated highlights | delphinus | |
| 2020-12-18 | fix(query): add noop handler for make-range | Steven Sojka | |
| 2020-12-16 | fix: support shiftwidth for indents. | Senghan Bright | |
| 2020-12-12 | [docgen] Update README.md | Github Actions | |
| skip-checks: true | |||
| 2020-12-12 | Add fix for vim.fn.executable(vim.NIL) | Stephan Seitz | |
| This might be a hard error in future: https://github.com/neovim/neovim/issues/13485 https://github.com/vim/vim/commit/7bb4e74c38642682cfdd0cb4052adfa5efdd7dd1 | |||
| 2020-12-10 | Pin Erlang parser | Stephan Seitz | |
| 2020-12-10 | fix erlang parser installation | Okan Esen | |
| 2020-12-10 | Add Erlang parser to list | Leandro Ostera | |
| 2020-12-09 | Allow user configure parsers using metatables | Luis Carlos Cruz Carballo | |
| 2020-12-09 | fix: find parsers correctly | li | |
| Explicitely installed parsers will not be found implicitely | |||
| 2020-12-07 | typo | rockerBOO | |
| 2020-12-07 | cleanup: Add additional context | rockerBOO | |
| 2020-12-07 | docs: Update docs for missing groups, re-order alphabetically | rockerBOO | |
| 2020-12-07 | Remove 'CI' guard (we can have now the newest version of nvim again) | Stephan Seitz | |
| 2020-12-06 | add readme and more correct highlight captures | Tormod Alf Try Tufteland | |
| 2020-12-06 | add kotlin parser and highligh-queries | Tormod Alf Try Tufteland | |
| 2020-11-29 | Fix: Print message when TSUpdate has nothing to do | Stephan Seitz | |
| 2020-11-27 | feat: add graphql grammar | Bryan Kegley | |
| 2020-11-25 | Only update outdated_parsers on TSUpdate | Stephan Seitz | |
| 2020-11-23 | fix: make version check work on non-CI environments | Stephan Seitz | |
| 2020-11-23 | fix: update interface following languagetree merge (#687) | Thomas Vigouroux | |
| 2020-11-22 | Add @leo60228 as Nix maintainer | leo60228 | |
| 2020-11-18 | fix(predicates): Fix #446: highlight property only if not a method | Stephan Seitz | |
| 2020-11-18 | feat(predicates): extend has-ancestor?, add has-parent?/has-type? | Stephan Seitz | |
| 2020-11-17 | Make make-range! more relaxed (one of the arguments maybe nil) | Stephan Seitz | |
| 2020-11-04 | Add initial clojure support | sogaiu | |
| 2020-11-03 | parser: only use parse to get a tree | Thomas Vigouroux | |
| This will avoid using internal data. | |||
| 2020-10-31 | feat(install): Enable installation of parser with repo.url as a local path | Stephan Seitz | |
| 2020-10-30 | fix(languagetree): highlight children regardless of starting column | Steven Sojka | |
| 2020-10-28 | fix(#620): Fall into the "update-all" branch if lang is "all" | BodneyC | |
| 2020-10-26 | Add virtual range for creating node-like objects from multiple nodes | Stephan Seitz | |
| 2020-10-26 | feat(install): add "maintained" option to only install maintained parsers | Stephan Seitz | |
| Unmaintained parsers only give users little benefit but take sometimes a a long time to install (e.g. Markdown, Julia, Haskell parser). We could recommend to only install maintained parsers by default. | |||
| 2020-10-24 | show [treesitter] during install | kyazdani42 | |
| 2020-10-24 | feat: add TSConfigInfo to display current config | Stephan Seitz | |
| https://nvim-treesitter.zulipchat.com/#narrow/stream/252271-general/topic/Random/near/210929394 | |||
| 2020-10-22 | fix(markdown): remove from parser list | Thomas Vigouroux | |
| Bye bye markdown | |||
| 2020-10-22 | fix(markdown): disable highlighting | Thomas Vigouroux | |
| The markdown scanner errors out far too often to be usable, disabling it by default would avoid many issues until those assertion errors are fixed. | |||
| 2020-10-21 | LanguageTree: don't error when injecting a language | Santos Gallegos | |
| 2020-10-21 | fix(languagetree): avoid language self-injection | Thomas Vigouroux | |
| This avoids some stack overflows when a language includes itself. This is a temporary solution, and will be addressed later when actually managing our own parsers. | |||
| 2020-10-20 | Add verilog/systemverilog queries | Zeger Van de Vannet | |
| 2020-10-19 | Remove textobjects from built_in_query_groups | Stephan Seitz | |
| 2020-10-19 | Treesitter indent | kiyan42 | |
| also fixes the memoize_by_buf_tick function | |||
| 2020-10-19 | start indent module | kiyan42 | |
| 2020-10-19 | feat(languagetree): implement language tree | Thomas Vigouroux | |
| Allow the LanguageTree to be used as an option for highlighting. Co-authored-by: Santos Gallegos <stsewd@protonmail.com> Co-authored-by: Yazdani Kiyan <yazdani.kiyan@protonmail.com> | |||
| 2020-10-16 | Fix: avoid overwriting tables in insert_to_path | Stephan Seitz | |
| The following query will result in matches with only one node though it requires two nodes to be a match. ```scheme (function_definition (comment) @function.inner.start body: (block) @function.inner) ``` Why? First `insert_to_path` is called for `@function.inner.start` which will result int the following table. ```lua { function = { inner = { start { node } } } } ``` `insert_to_path` will overwrite the result ```lua { function = { inner = { node } } } ``` Related #552 | |||
| 2020-10-16 | Remove get_parser logic | kiyan42 | |
| upstream now handles parsers by itself, so we don't need to do it in this repo. | |||
| 2020-10-13 | fix(highlights): use new highlighter interface | Thomas Vigouroux | |
| 2020-10-12 | query: remove unnecessary query parsing | Thomas Vigouroux | |
