| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add highlight tests | Stephan Seitz | 2021-11-24 | 2 | -0/+107 |
| | | |||||
| * | ci: Try out windows-2022 | Stephan Seitz | 2021-11-24 | 2 | -7/+7 |
| | | |||||
| * | Add glsl ftdetect | Marco Galli | 2021-11-23 | 1 | -0/+1 |
| | | |||||
| * | Update lockfile.json | GitHub | 2021-11-23 | 1 | -6/+6 |
| | | |||||
| * | zig: highlight zig format, type and function | maxxnino | 2021-11-23 | 1 | -2/+6 |
| | | |||||
| * | Prefer lua-match over match | Lewis Russell | 2021-11-23 | 20 | -67/+67 |
| | | | | | as string.find is much quicker than vim.regex:match* | ||||
| * | Update lockfile.json | GitHub | 2021-11-20 | 1 | -2/+2 |
| | | |||||
| * | Add `query error: invalid node type at position` to the troubleshooting section | Santos Gallegos | 2021-11-20 | 2 | -1/+13 |
| | | | | | We have had many of these recently... | ||||
| * | r add new highlights | aspeddro | 2021-11-18 | 1 | -13/+42 |
| | | |||||
| * | Update lockfile.json | GitHub | 2021-11-18 | 1 | -4/+4 |
| | | |||||
| * | Format with stylua | Santos Gallegos | 2021-11-18 | 1 | -3/+1 |
| | | | | | CI is failing for stylua due to this. | ||||
| * | Add basic vimscript injection in `vim.cmd`/`nvim_command`/`nvim_exec` (#1922) | vhyrro | 2021-11-16 | 1 | -0/+26 |
| | | |||||
| * | Just one line | Santos Gallegos | 2021-11-16 | 1 | -7/+3 |
| | | |||||
| * | Docs: update docs on how to override a query | Santos Gallegos | 2021-11-16 | 1 | -11/+18 |
| | | | | | | | | | | `queries/` and `after/queries/` are the same now. I kind of prefer the old method, but just updating our docs to reflect the reality for now. Closes https://github.com/nvim-treesitter/nvim-treesitter/issues/1710 Closes https://github.com/nvim-treesitter/nvim-treesitter/issues/1441 | ||||
| * | [docgen] Update README.md | Github Actions | 2021-11-14 | 1 | -0/+1 |
| | | | | | skip-checks: true | ||||
| * | C: fix preproc parameters | Santos Gallegos | 2021-11-14 | 1 | -2/+1 |
| | | | | | | | | This was capturing too much, we only want to highlight the identifier. Fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/1999 | ||||
| * | Update lockfile.json | GitHub | 2021-11-12 | 1 | -0/+3 |
| | | |||||
| * | r add new highlights | aspeddro | 2021-11-12 | 1 | -0/+2 |
| | | |||||
| * | injections(http): add comment injection | Stephan Seitz | 2021-11-12 | 1 | -0/+1 |
| | | |||||
| * | refactor: inherit json | gegoune | 2021-11-12 | 2 | -16/+3 |
| | | |||||
| * | fix: address change requests | gegoune | 2021-11-12 | 1 | -3/+3 |
| | | |||||
| * | feat: add http parser | gegoune | 2021-11-12 | 2 | -0/+42 |
| | | | | | | | | | All credit goes to @NTBBloodbath. See: https://github.com/NTBBloodbath/rest.nvim/issues/75#issuecomment-960447966 Co-authored-by: NTBBloodbath <bloodbathalchemist@protonmail.com> | ||||
| * | feat: get node at cursor of other win | Fabian David Schmidt | 2021-11-12 | 1 | -1/+7 |
| | | |||||
| * | Add condition function to module config | patrick96 | 2021-11-12 | 2 | -6/+12 |
| | | | | | | | | | The function is called with the language and bufnr, if it returns false, the module is disabled for that buffer. This gives the user more fine-grained control over whether a module is started. | ||||
| * | Python: highlight semicolon | Santos Gallegos | 2021-11-12 | 1 | -1/+1 |
| | | |||||
| * | fix: use more specific identifier check | Łukasz Niemier | 2021-11-12 | 1 | -1/+1 |
| | | |||||
| * | fix: make comment doc highlighting work for any doc tag | Łukasz Niemier | 2021-11-12 | 1 | -11/+14 |
| | | |||||
| * | fix: Elixir non-doc sigils will no longer be flickering | Łukasz Niemier | 2021-11-12 | 2 | -31/+27 |
| | | | | | | It also adds support for colouring documentation metadata attributes (ex. `@doc foo: :bar`). | ||||
| * | Update lockfile.json | GitHub | 2021-11-12 | 1 | -2/+2 |
| | | |||||
| * | r: add new operator | aspeddro | 2021-11-12 | 1 | -0/+1 |
| | | |||||
| * | Update lockfile.json | GitHub | 2021-11-11 | 1 | -5/+5 |
| | | |||||
| * | Ensure `ft_to_lang` supports multipart filetypes. | Robert Jackson | 2021-11-11 | 1 | -2/+7 |
| | | | | | | | | | This allows a given parser to directly implement a multipart filetype (like `glimmer` parser does for `html.handlebars`). If an exact match for the current filetype is found in the lookup table, it will be used; otherwise we look for just the first segment. | ||||
| * | Add `html.handlebars` as a valid type for the glimmer parser. | Robert Jackson | 2021-11-11 | 1 | -0/+1 |
| | | | | | This filetype is in common use due to https://github.com/mustache/vim-mustache-handlebars/blob/master/ftdetect/handlebars.vim#L2 | ||||
| * | Add Operators for Ruby | Cameron | 2021-11-11 | 1 | -5/+38 |
| | | | | | | | | Many operators were missing from ruby, so, I added them. Additionally, with string interpolation (`"#{xxx}"`), the closing `}` was being matched to `punctuation.bracket` instead of `punctuation.special`, so I fixed that too. I didn't see any further details about how to contribute, so if I've overlooked anything, I'll be happy to add it. | ||||
| * | fix(vue.indents): add support for template_element | Cyril Mizzi | 2021-11-11 | 1 | -0/+4 |
| | | |||||
| * | fix: define indents.scm for html_tags and inherits html and vue from this file | Cyril Mizzi | 2021-11-11 | 3 | -23/+13 |
| | | |||||
| * | feat(vue): add indents.scm file | Cyril Mizzi | 2021-11-11 | 1 | -0/+12 |
| | | | | There's no indentation file for Vue. This implementation is based on the HTML indentation file with a minor support for the `template_element` tag. As JS is bind with the JS Tree-sitter, the indentation is already fine. | ||||
| * | Update lockfile.json | GitHub | 2021-11-08 | 1 | -3/+3 |
| | | |||||
| * | docs: make comment more specific | Sirisak Lueangsaksri | 2021-11-08 | 1 | -1/+1 |
| | | |||||
| * | refactor: nitpicking | Sirisak Lueangsaksri | 2021-11-08 | 3 | -3/+3 |
| | | |||||
| * | feat: sync install for `ensure_installed` | Sirisak Lueangsaksri | 2021-11-08 | 3 | -1/+8 |
| | | |||||
| * | docs: move description to the first line | Dundar Göc | 2021-11-05 | 1 | -3/+1 |
| | | | | | | | | | | | | This will make the description of nvim-treesitter show up in the LOCAL ADDITIONS section of the help text. So this |nvim-treesitter| instead becomes |nvim-treesitter| Treesitter configurations and abstraction layer for Neovim. | ||||
| * | Update lockfile.json | GitHub | 2021-11-04 | 1 | -1/+1 |
| | | |||||
| * | fix(teal): highlighting for types | Lewis Russell | 2021-11-04 | 1 | -2/+2 |
| | | |||||
| * | Update lockfile.json | GitHub | 2021-11-03 | 1 | -3/+3 |
| | | |||||
| * | chore: fix typos | Dundar Göc | 2021-11-02 | 15 | -20/+20 |
| | | |||||
| * | Add `ftdetect` setup for `glimmer` parser. (#1973) | Robert Jackson | 2021-11-02 | 1 | -0/+1 |
| | | | | | Without this, `*.hbs` files are not highlighted (unless you have some other plugin that adds it for you). | ||||
| * | feat(svelte): inject JS on `each` expression (#1969) | elianiva | 2021-11-02 | 1 | -1/+4 |
| | | |||||
| * | Update queries/python/highlights.scm | Santos Gallegos | 2021-11-01 | 1 | -1/+1 |
| | | |||||
| * | Revert "feat: add `del` keyword for highlights" | Santos Gallegos | 2021-11-01 | 1 | -2/+2 |
| | | | | | This reverts commit 385193d41fe6b74fe0e3698588ae54545d1cd88b. | ||||
