| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | chore: use vim.ui.select for TSEditQuery if available | Stephan Seitz | 2021-10-03 | 1 | -19/+36 | |
| | | ||||||
| * | chore: print compiler version in healthcheck | Stephan Seitz | 2021-10-03 | 1 | -1/+8 | |
| | | ||||||
| * | graphql: add `commentstring` | Vikas Raj | 2021-10-03 | 1 | -0/+1 | |
| | | ||||||
| * | fix: remove priority in ecma template substitution hl | kiyan | 2021-10-03 | 1 | -9/+9 | |
| | | | | | | | | This PR removes the priority override for the interpolation because it overrides every ecma based template literal, setting none with a higher priority than ecma groups which made every template string look `un`highlighted. | |||||
| * | Add headers as an option to fold on (#1873) | Stephen Bolton | 2021-10-02 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | | * Add headers as an option to fold on treesitter-beancount added grammar rules around orgmode and markdown headers so that they are recognized in beancount documents. This change makes it so that they will be taken into consideration when folding text. Commit: https://github.com/polarmutex/tree-sitter-beancount/commit/79ae7c1f2654a2a6936b0f37bf754e5ff59c9186 * Fix node name for headers The correct name for the header nodes is heading. | |||||
| * | Rust: highlight loop labels | Santos Gallegos | 2021-10-01 | 1 | -0/+1 | |
| | | | | | Closes https://github.com/nvim-treesitter/nvim-treesitter/issues/1891 | |||||
| * | Update README.md | Stephan Seitz | 2021-10-01 | 1 | -1/+1 | |
| | | | | Co-authored-by: Santos Gallegos <stsewd@protonmail.com> | |||||
| * | docs(install): explain how to use a proxy for download | Stephan Seitz | 2021-10-01 | 1 | -0/+22 | |
| | | ||||||
| * | feat(install): add options `prefer_git` and `command_extra_args` | Stephan Seitz | 2021-10-01 | 2 | -5/+15 | |
| | | | | | Fixes #1888 | |||||
| * | Rust: fix some highlights | Santos Gallegos | 2021-10-01 | 1 | -3/+6 | |
| | | | | | Closes https://github.com/nvim-treesitter/nvim-treesitter/issues/1856 | |||||
| * | highlight `description` as a comment | Vikas Raj | 2021-10-01 | 1 | -1/+2 | |
| | | ||||||
| * | fix(vim): support syntax command and update parser | Thomas Vigouroux | 2021-10-01 | 1 | -0/+16 | |
| | | ||||||
| * | Fix #1853 | igorlfs | 2021-09-30 | 1 | -1/+0 | |
| | | ||||||
| * | Update lockfile.json | GitHub | 2021-09-30 | 1 | -1/+1 | |
| | | ||||||
| * | Update lockfile.json | GitHub | 2021-09-30 | 1 | -3/+3 | |
| | | ||||||
| * | feat(fennel): update parser and queries | Otto Modinos | 2021-09-30 | 3 | -28/+23 | |
| | | ||||||
| * | Vim: highlight setlocal (#1877) | Santos Gallegos | 2021-09-30 | 1 | -0/+1 | |
| | | | | This was just added some days ago. | |||||
| * | Update lockfile.json | GitHub | 2021-09-27 | 1 | -2/+2 | |
| | | ||||||
| * | Vim: update highlights and injections | Santos Gallegos | 2021-09-27 | 2 | -0/+23 | |
| | | ||||||
| * | Update lockfile.json | GitHub | 2021-09-27 | 1 | -1/+1 | |
| | | ||||||
| * | cpp: highlight template method identifier as a method | John Drouhard | 2021-09-27 | 1 | -0/+3 | |
| | | ||||||
| * | highlights(rust): Add colon `:` to delimiters | Sergio Alejandro Vargas | 2021-09-26 | 1 | -1/+1 | |
| | | ||||||
| * | highlights(rust): fix bang `!` in macro_invocation | Sergio Alejandro Vargas | 2021-09-26 | 1 | -0/+1 | |
| | | ||||||
| * | highlights(rust): Fix angle brackets, and closures | Sergio Alejandro Vargas | 2021-09-26 | 1 | -27/+28 | |
| | | | | | | Highlight angle brackets in type parameters and bars in closures bars as `@punctuation.bracket` not as `@operator`. | |||||
| * | Update lockfile.json | GitHub | 2021-09-26 | 1 | -11/+11 | |
| | | ||||||
| * | cpp: fix locals.scm from breaking change in tree-sitter-cpp | John Drouhard | 2021-09-26 | 1 | -7/+3 | |
| | | ||||||
| * | Update cuda parsers | Stephan Seitz | 2021-09-26 | 1 | -1/+1 | |
| | | ||||||
| * | cpp: update lockfile.json and fix for breaking changes | John Drouhard | 2021-09-26 | 2 | -11/+7 | |
| | | ||||||
| * | injections(teal): fix cdef injection | Stephan Seitz | 2021-09-25 | 1 | -0/+15 | |
| | | ||||||
| * | [docgen] Update README.md | Github Actions | 2021-09-25 | 1 | -0/+1 | |
| | | | | | skip-checks: true | |||||
| * | injections(lua): fix cdef injection | Stephan Seitz | 2021-09-25 | 1 | -0/+15 | |
| | | | | | Fixes #1840 | |||||
| * | Use vim-range style (1-index based) when possible (#1841) | Santos Gallegos | 2021-09-24 | 2 | -42/+38 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/nvim-treesitter/nvim-treesitter/pull/1829 half fixed incremental selection for the vim parser, but other bugs still remain (infinite selection and skip selecting the root node). Problems can be replicated with these two files: (missing selecting the root node) ```vim set scrolloff=7 set scrolloff=7 ``` (infinite loop) ```vim set scrolloff=7 ``` The main problem is that we try to map the current selection range to a TS range, but the TS range of a node could include the EOL/EOL marks so it's impossible to know when to change the vim range to match the TS range, is more easy to transform the TS range to a vim range and do the comparison. | |||||
| * | Update lockfile.json | GitHub | 2021-09-21 | 1 | -2/+2 | |
| | | ||||||
| * | Update lockfile.json | GitHub | 2021-09-21 | 1 | -0/+3 | |
| | | ||||||
| * | "::" should be of type "operator" | Lucas Crownover | 2021-09-21 | 1 | -1/+1 | |
| | | | | swap constant for operator per treesitter recommendation | |||||
| * | Separate special variables to catch up master | delphinus | 2021-09-21 | 1 | -1/+3 | |
| | | ||||||
| * | Use @string.regex to highlight regex's | delphinus | 2021-09-21 | 1 | -2/+5 | |
| | | ||||||
| * | Add minimum implementation for highlights | delphinus | 2021-09-21 | 1 | -0/+169 | |
| | | ||||||
| * | Swapping to the correct repo | Lucas Crownover | 2021-09-21 | 1 | -1/+1 | |
| | | ||||||
| * | Adding perl parser | Lucas Crownover | 2021-09-21 | 1 | -0/+9 | |
| | | ||||||
| * | Update lockfile.json | GitHub | 2021-09-20 | 1 | -4/+4 | |
| | | ||||||
| * | update hcl parser, update queries | mhoffm | 2021-09-20 | 2 | -7/+11 | |
| | | ||||||
| * | Update lockfile.json | maxxnino | 2021-09-20 | 1 | -1/+1 | |
| | | ||||||
| * | Zig queries: highlight, fold and indent | maxxnino | 2021-09-20 | 3 | -5/+17 | |
| | | | | | | | | | * fold for if/while/for * highlight "_" for ignore variable * highlight "c" for PtrTypeStart * highlight "?" for optional type * remove duplicate query node in indent | |||||
| * | [docgen] Update README.md | Github Actions | 2021-09-19 | 1 | -0/+1 | |
| | | | | | skip-checks: true | |||||
| * | highlights(c): add Mircosoft attributes | Stephan Seitz | 2021-09-19 | 1 | -1/+13 | |
| | | ||||||
| * | Fix incremental selection for nodes that include EOL | Santos Gallegos | 2021-09-19 | 1 | -1/+2 | |
| | | | | | | | | | | | | | From `:h setpos()` > If "col" is smaller than 1 then 1 is used. This can be tested with incremental selection on a vim file. ```vim set title ``` | |||||
| * | Update lockfile.json | GitHub | 2021-09-19 | 1 | -6/+9 | |
| | | ||||||
| * | Support hjson | kghugo | 2021-09-19 | 7 | -0/+32 | |
| | | ||||||
| * | highlights(c): add __attribute__ | Stephan Seitz | 2021-09-19 | 1 | -0/+1 | |
| | | ||||||
