| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | feat(incremental_selection): don't require locals | Thomas Vigouroux | 2021-04-22 | 2 | -2/+8 |
| | | |||||
| * | parsers: nix no longer requires_generate_from_grammar | Stephan Seitz | 2021-04-22 | 1 | -1/+0 |
| | | | | | Not required after https://github.com/cstrahan/tree-sitter-nix/pull/11 | ||||
| * | fix(folds): always fold more than one line | Thomas Vigouroux | 2021-04-22 | 1 | -1/+3 |
| | | |||||
| * | fix: Sort parsers for :TSInstallInfo | Stephan Seitz | 2021-04-21 | 1 | -1/+3 |
| | | |||||
| * | Avoid Lua 5.3 function table.unpack | Stephan Seitz | 2021-04-19 | 1 | -1/+1 |
| | | |||||
| * | YAML: update queries (#1203) | Santos Gallegos | 2021-04-18 | 1 | -1/+2 |
| | | | | Closes https://github.com/nvim-treesitter/nvim-treesitter-refactor/issues/18 | ||||
| * | Fix GDScript highlighting | Shatur95 | 2021-04-18 | 1 | -1/+1 |
| | | |||||
| * | Fix TSEditQuery with several files (#1191) | Santos Gallegos | 2021-04-16 | 1 | -3/+12 |
| | | | | | | - Choice already starts with 1, there isn't need to increment 1 - The first item is the prompt as recommended in `:h inputlist()` (this way the choice matches when using the mouse) | ||||
| * | remove developer mode error message | Daniel Bendel | 2021-04-15 | 1 | -3/+0 |
| | | |||||
| * | split is_github_or_gitlab again | Daniel Bendel | 2021-04-15 | 1 | -3/+5 |
| | | |||||
| * | remove single-branch and branch arguments on git call | Daniel Bendel | 2021-04-15 | 1 | -3/+1 |
| | | |||||
| * | fix undefined variable | Daniel Bendel | 2021-04-15 | 1 | -1/+1 |
| | | |||||
| * | a little less variables :) | Daniel Bendel | 2021-04-15 | 1 | -5/+3 |
| | | |||||
| * | removed core.symlinks=true from git call | Daniel Bendel | 2021-04-15 | 1 | -2/+0 |
| | | |||||
| * | use utils.join_path | AdnoC | 2021-04-15 | 1 | -7/+1 |
| | | |||||
| * | use locked revision when downloading via git | AdnoC | 2021-04-15 | 1 | -4/+29 |
| | | |||||
| * | fix windows check | AdnoC | 2021-04-15 | 1 | -6/+1 |
| | | |||||
| * | style | AdnoC | 2021-04-15 | 1 | -1/+8 |
| | | |||||
| * | Do not use builtin tar on Windows | AdnoC | 2021-04-15 | 1 | -1/+2 |
| | | | | | | | | Several parsers (typescript and ocaml specifically) contain symlinks in their repo. The tar built into Windows cannot handle them. So, on Windows just use git to download parsers. | ||||
| * | feat: Add TSEditQueryUserAfter | Stephan Seitz | 2021-04-14 | 1 | -7/+27 |
| | | |||||
| * | feat: Add TSEditQuery | Stephan Seitz | 2021-04-14 | 2 | -0/+40 |
| | | |||||
| * | Fix #1182: fix TSRange:parent | Stephan Seitz | 2021-04-14 | 1 | -4/+2 |
| | | |||||
| * | fixup: remove generate_from_grammar | elianiva | 2021-04-08 | 1 | -3/+2 |
| | | |||||
| * | feat: add scss parser | elianiva | 2021-04-08 | 1 | -0/+8 |
| | | |||||
| * | Fix usage of string.sub (#1164) | Santos Gallegos | 2021-04-07 | 1 | -2/+2 |
| | | | | | | | | From https://www.lua.org/pil/20.html > The call string.sub(s,i,j) extracts a piece of the string s, from the i-th to the j-th character inclusive. This was breaking textobjects movement. | ||||
| * | fix(health): let CC check behave like in real installation | Stephan Seitz | 2021-04-07 | 1 | -3/+7 |
| | | | | | Fixes #1146 | ||||
| * | Fix: allow empty path in utils.get_at_path | Stephan Seitz | 2021-04-06 | 2 | -6/+4 |
| | | |||||
| * | TSModuleInfo: make new buffer work with given argument | Marco Hinz | 2021-04-06 | 1 | -24/+16 |
| | | |||||
| * | TSModuleInfo: use custom buffer | Marco Hinz | 2021-04-06 | 1 | -19/+83 |
| | | |||||
| * | Fix incremental selection (#1135) | Santos Gallegos | 2021-04-05 | 1 | -4/+35 |
| | | | | | | | | | | | | | | So, there are two problems: - There was an infinite loop when inc selection was initiated from an injection. - The comparison was wrong when the whole file was selected, this is because ts matches the EOF. This is an extra line with one char (EOF). I put a workaround to try to select the node from the main tree, but we should try to select the node from the parent tree of the injection, but I wasn't able to get the parent tree from the node. | ||||
| * | TSModuleInfo: cleaner indentation | Marco Hinz | 2021-04-05 | 1 | -10/+7 |
| | | |||||
| * | TSModuleInfo: sort mods and languages | Marco Hinz | 2021-04-05 | 1 | -5/+9 |
| | | |||||
| * | fix: prev_node nil check | kiyan | 2021-04-02 | 1 | -1/+1 |
| | | |||||
| * | healthcheck: raise error when ABI is too old | Stephan Seitz | 2021-04-02 | 1 | -1/+11 |
| | | |||||
| * | Remove requires_generate_from_grammar for ledger | Stephan Seitz | 2021-04-01 | 2 | -2/+1 |
| | | |||||
| * | all/maintained: only installation from grammar when tree-sitter CLI executable | Stephan Seitz | 2021-04-01 | 1 | -2/+11 |
| | | |||||
| * | Check for node-js on :TSInstallFromGrammar | Stephan Seitz | 2021-04-01 | 2 | -0/+14 |
| | | | | | Ref: https://github.com/nvim-treesitter/nvim-treesitter/issues/1121#issuecomment-811755767 | ||||
| * | fix: avoid infinite loop which causes some breakage | kiyan | 2021-04-01 | 1 | -1/+1 |
| | | |||||
| * | fix: indent on new line | kiyan | 2021-04-01 | 1 | -7/+18 |
| | | |||||
| * | Add tree-sitter ABI version to health check | Stephan Seitz | 2021-03-31 | 1 | -0/+4 |
| | | |||||
| * | Use fullpath to tree-sitter executable to avoid using one from NPM | Stephan Seitz | 2021-03-30 | 1 | -1/+1 |
| | | |||||
| * | Add LaTeX maintainers | Stephan Seitz | 2021-03-30 | 1 | -1/+3 |
| | | |||||
| * | Add text.reference and text.environment | Stephan Seitz | 2021-03-30 | 1 | -0/+3 |
| | | |||||
| * | latex: add TSMath that behaves like vimtex math highlighting | Stephan Seitz | 2021-03-30 | 1 | -0/+1 |
| | | |||||
| * | refactor(all): language tree adaption (#1105) | Steven Sojka | 2021-03-30 | 8 | -57/+190 |
| | | |||||
| * | Address #1067: check whether lockfile exists | Stephan Seitz | 2021-03-24 | 1 | -1/+2 |
| | | |||||
| * | chore(parsers): add tsx maintainer | Steven Sojka | 2021-03-24 | 1 | -1/+2 |
| | | |||||
| * | feat(install): allow ignore list when installing parsers (#1098) | Steven Sojka | 2021-03-24 | 3 | -7/+51 |
| | | |||||
| * | Update teal highlights | Corey Williamson | 2021-03-23 | 1 | -1/+0 |
| | | |||||
| * | fix(checkhealth): display error messages of failed queries | Stephan Seitz | 2021-03-23 | 2 | -12/+25 |
| | | |||||
