| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | parser(vlang): fix location of remote repo | Stephan Seitz | 2022-05-21 | 1 | -1/+2 |
| | | |||||
| * | feat(vlang): initial support | tami5 | 2022-05-21 | 1 | -0/+11 |
| | | | | | | | | | | | | | | | | | Add support for vlang filetypes. - [ ] Highlight `C` as builtin variable. This is FFI in vlang land, where C act like extern and access c functions. The vlang parser does some extension between C function calls and arguments but I believe highlighting C as builtin variable is sufficient indicator for now. I tried to use offset! but failed. Any suggestions? - [ ] Set up parser url. the vlang parser is located within [vls] repo. Is installing from nested repo supported? `tree_sitter_v/src/parser.c`? [vls]: https://github.com/vlang/vls/tree/master/tree_sitter_v cc @elianiva @theHamsta | ||||
| * | fix(commands): add -bar to allow other commands | kiyan | 2022-05-14 | 1 | -0/+1 |
| | | | | | addresses #2920 | ||||
| * | Add embedded template to support ERB files | Nick Pezza | 2022-05-05 | 1 | -0/+8 |
| | | |||||
| * | fixup: separate augroups for modules | Christian Clason | 2022-04-30 | 1 | -4/+2 |
| | | |||||
| * | refactor!: update to Neovim 0.7 APIs | Christian Clason | 2022-04-30 | 4 | -38/+46 |
| | | | | | | | | * set highlight groups via nvim_set_hl * define autocommands via nvim_create_autocmd * port plugin/nvim-treesitter.vim to Lua * port healthcheck to Lua | ||||
| * | chore!: remove ensure_installed='maintained' | Christian Clason | 2022-04-30 | 2 | -23/+1 |
| | | | | | | | | | Removes all support (and tests) for the parser category "maintained", as this is no longer a useful category. BREAKING CHANGE: replace `ensure_installed='maintained'` by an explicit list of parsers, or use `'all'` (not recommended). | ||||
| * | feat(proto): add parser | francisco souza | 2022-04-28 | 1 | -0/+10 |
| | | | | | Related to #2307. | ||||
| * | feat: add m68k parser and queries | Graham Bates | 2022-04-27 | 1 | -0/+9 |
| | | |||||
| * | Add org parser | TerseTears | 2022-04-23 | 1 | -0/+8 |
| | | |||||
| * | fix(ts_utils): fix swap_nodes after get_node_text change | francisco souza | 2022-04-21 | 2 | -32/+35 |
| | | | | | | | | | | | | After some discussion, it looks like the easiest thing to do for now is to keep a private copy of get_node_text (just to skip the deprecation message) and invoke that, until core provides an equivalent function that can return the node content in a table representing the node "lines". Also fixes the statusline by calling the private version for get_node_text until a change is made in core. | ||||
| * | adapt to vim.treesitter.query.get_node_text | Nir Tzachar | 2022-04-19 | 1 | -4/+4 |
| | | |||||
| * | fixup: restore old implementation | Christian Clason | 2022-04-18 | 1 | -1/+21 |
| | | |||||
| * | fix(statusline): adjust to the new API (query) | ranjithshegde | 2022-04-18 | 1 | -7/+9 |
| | | |||||
| * | fix(statusline): don't use deprecated function | Christian Clason | 2022-04-18 | 1 | -3/+3 |
| | | |||||
| * | chore: deprecate ts_utils.get_node_text | Stephan Seitz | 2022-04-18 | 3 | -31/+14 |
| | | |||||
| * | chore!: remove compat module for vim.ui | Stephan Seitz | 2022-04-18 | 1 | -23/+0 |
| | | |||||
| * | feat(swift): switch to branch with generated files | Christian Clason | 2022-04-18 | 1 | -2/+1 |
| | | |||||
| * | chore: bump minimal Nvim version to 0.7 and check | Christian Clason | 2022-04-16 | 1 | -0/+4 |
| | | | | | | | Checks minimal version in `:checkhealth nvim-treesitter` Also recommend nightlies | ||||
| * | remove ignore_child_trees from get_node_at_position | Marcus Caisey | 2022-04-16 | 1 | -8/+15 |
| | | |||||
| * | add ignore_injected_langs to get_node_at_cursor | Marcus Caisey | 2022-04-16 | 1 | -4/+9 |
| | | |||||
| * | Format with stylua | Emilia Simmons | 2022-04-15 | 1 | -1/+1 |
| | | |||||
| * | fix: properly select name in revision archive | Emilia Simmons | 2022-04-15 | 1 | -1/+6 |
| | | |||||
| * | fix: remove ftdetect, Fix `struct` highlight for wgsl | Konrad Bochnia | 2022-04-11 | 1 | -1/+1 |
| | | |||||
| * | Add WGSL parser | Konrad Bochnia | 2022-04-11 | 1 | -0/+9 |
| | | |||||
| * | Fix nvim-treesitter CI | 6cdh | 2022-04-10 | 1 | -0/+1 |
| | | |||||
| * | Added scheme support | 6cdh | 2022-04-10 | 1 | -0/+8 |
| | | |||||
| * | chore!: deprecate ensure_installed=maintained | Christian Clason | 2022-04-10 | 1 | -0/+4 |
| | | | | | | BREAKING CHANGE: specify explicit list or use `ensure_installed='all'` (not recommended) | ||||
| * | fix(modules): enabling disabling per buffer and globally | kiyan | 2022-04-10 | 1 | -11/+37 |
| | | | | | | | | | | | | | | | When a module is disabled by default in the config, running TSBufEnable will not enable the module because the is_enabled function will always return false, thus the module not being enabled. Also, disabling/enabling the buffers is flaky. This commit adds per buffer check when the module is not disabled. It also makes the enable and disable more indempotent. i've also renamed TS*All to TS*. Fixes #2754 | ||||
| * | Add more filetypes for treesitter-markdown | Micah Halter | 2022-04-08 | 1 | -0/+2 |
| | | | | | Signed-off-by: Micah Halter <micah@balena.io> | ||||
| * | feat: add astro | virchau13 | 2022-04-07 | 1 | -0/+9 |
| | | |||||
| * | Fixed the stylua | Lex | 2022-04-03 | 1 | -2/+2 |
| | | |||||
| * | Added the initial version for the support of rego language | Oleksii Demennikov | 2022-04-03 | 1 | -0/+9 |
| | | |||||
| * | Add elvish | Tobias Frilling | 2022-04-01 | 1 | -0/+9 |
| | | |||||
| * | Add capture groups for remaining builtin highlight groups | Gregory Anders | 2022-03-30 | 1 | -0/+12 |
| | | | | | | Some builtin highlight groups (see `:h group-name`) do not yet have associated capture groups, so add them. | ||||
| * | feat: add vimdoc parser and highlight queries | Christian Clason | 2022-03-29 | 1 | -0/+10 |
| | | |||||
| * | chore: placate luacheck | Christian Clason | 2022-03-26 | 1 | -1/+1 |
| | | |||||
| * | Add Cooklang | Addison Chan | 2022-03-17 | 1 | -0/+9 |
| | | |||||
| * | fix(solidity): follow install_info.branch on parser update | Stephan Seitz | 2022-03-12 | 1 | -1/+11 |
| | | |||||
| * | Add highlights query for Solidity | YongJieYongJie | 2022-03-11 | 1 | -0/+9 |
| | | |||||
| * | fix: prefer gmake over make | Stephan Seitz | 2022-03-08 | 1 | -2/+9 |
| | | |||||
| * | Revert "2612: Use gmake when available" | Stephan Seitz | 2022-03-08 | 1 | -5/+1 |
| | | | | | This reverts commit d3d1637c3c7b384776dfc8f4e8c34cf83eca37e3. | ||||
| * | 2612: Use gmake when available | Sebastián Zaffarano | 2022-03-08 | 1 | -1/+5 |
| | | |||||
| * | Add slint parser configuration and queries (#2598) | Jared Moulton | 2022-03-07 | 1 | -0/+10 |
| | | | | | | | | | | | | | | | | | | * Add slint parser * Mark slint as experimental * Remove filetype and add slint to the lockfile * Update queries * Update varibable.builtin's and repeats * Update slint true false * Change export back to keyword * Change export back to include :) | ||||
| * | parsers: Add todotxt parser | Arnar Gauti Ingason | 2022-02-28 | 1 | -0/+11 |
| | | |||||
| * | refacto: expose a function to set custom capture for the higlighter | kiyan | 2022-02-19 | 2 | -12/+10 |
| | | | | | | | | | | BREAKING: deprecate custom_captures from highlight config. This allows plugin authors to extend the map. It also avoids settings user configuration specific values during the highlighter initialization (SOC). Not sure how much value this brings, and might potentially break a lot of people configurations. This is questionable. | ||||
| * | Add myself as maintainer of Elixir, Gleam queries | Connor Lay (Clay) | 2022-02-15 | 1 | -2/+2 |
| | | |||||
| * | Add Gleam parser | Connor Lay (Clay) | 2022-02-15 | 1 | -0/+9 |
| | | |||||
| * | feat: add lalrpop parser (#2524) | traxys | 2022-02-13 | 1 | -0/+9 |
| | | | | | LALRPOP is a parser generator for Rust. This only parses the LALRPOP side of the generator, not the nearly-rust code of the actions. | ||||
| * | typo fix | badhi | 2022-02-13 | 1 | -1/+1 |
| | | |||||
