| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | feat: add luau | Amaan Qureshi | 2023-04-28 | 1 | -0/+8 | |
| | | ||||||
| * | feat: add puppet | Amaan Qureshi | 2023-04-26 | 1 | -0/+8 | |
| | | ||||||
| * | fix: add `-f` to `mv` to avoid errors when updating | WindSoilder | 2023-04-26 | 1 | -1/+1 | |
| | | ||||||
| * | feat(smali): update queries from upstream parser | Amaan Qureshi | 2023-04-25 | 1 | -1/+1 | |
| | | ||||||
| * | docs: update readme maintainers | Amaan Qureshi | 2023-04-21 | 1 | -2/+2 | |
| | | ||||||
| * | chore(parsers): update http maintainers | Amaan Qureshi | 2023-04-20 | 1 | -1/+1 | |
| | | ||||||
| * | docs: update gitconfig in readme to reflect parser name (#4656) | stefan | 2023-04-20 | 1 | -1/+1 | |
| | | ||||||
| * | feat(markdown): configured aliases for fenced code block languages (#4659) | Benny Powers | 2023-04-18 | 1 | -11/+44 | |
| | | | | | | | | | | * feat(markdown): configured aliases for languages * refactor: use vim.treesitter.match * refactor: rename local vars * fix: query syntax | |||||
| * | fix(compat): add missing get_node_text, required by playground (#4666) | tzachar | 2023-04-17 | 1 | -0/+4 | |
| | | ||||||
| * | fix(checkhealth): use non-deprecated versions if possible | dundargoc | 2023-04-16 | 1 | -18/+22 | |
| | | ||||||
| * | add test | Pham Huy Hoang | 2023-04-08 | 1 | -2/+2 | |
| | | ||||||
| * | fix(indent): Make indent ignore trailing spaces/comment | Pham Huy Hoang | 2023-04-08 | 1 | -5/+23 | |
| | | | | | Signed-off-by: Pham Huy Hoang <hoangtun0810@gmail.com> | |||||
| * | vim: switch to parser maintained by Neovim (#4610) | Christian Clason | 2023-04-07 | 1 | -2/+2 | |
| | | | | | | Problem: The current vimscript parser has not been maintained for a while, which was a blocker for packaging the coming Neovim release. Solution: Fork parser to https://github.com/neovim/tree-sitter-vim/ and maintain it there from now on. | |||||
| * | feat: use `-bundle` to build parsers on macOS | Carlo Cabrera | 2023-04-03 | 1 | -1/+5 | |
| | | | | | | | | | | | This will make the parsers align more closely to the ones bundled with Neovim, because CMake uses the `-bundle` flag (instead of `-shared`) on macOS when a library is compiled as a `MODULE`. See, for example: https://github.com/neovim/neovim/blob/10baf89712724b4b95f7c641f2012f051737003c/cmake.deps/cmake/TreesitterParserCMakeLists.txt#L6-L9 | |||||
| * | chore(help)!: renamed to vimdoc | Christian Clason | 2023-04-01 | 1 | -8/+9 | |
| | | ||||||
| * | feat: add FIRRTL | Amaan Qureshi | 2023-03-27 | 1 | -0/+8 | |
| | | ||||||
| * | feat: add Pony | Amaan Qureshi | 2023-03-27 | 1 | -0/+8 | |
| | | ||||||
| * | fix: uninstall function in the install.lua | Sergey Kacheev | 2023-03-24 | 2 | -3/+4 | |
| | | | | | | The get_ensure_installed_parsers function return a table for the option "all" because uninstall accepts a table | |||||
| * | fix: `get_range` shim for playground | Tom van Dijk | 2023-03-24 | 2 | -10/+11 | |
| | | ||||||
| * | use indent.X syntax for captures and properties of set directives | George Harker | 2023-03-24 | 2 | -53/+71 | |
| | | | | | | | | | update CONTRIBUTING.md adjust indents for bass fix doc capture comment | |||||
| * | split delimiter into open_delimiter and close_delimiter | George Harker | 2023-03-24 | 1 | -7/+6 | |
| | | ||||||
| * | refactor(indent)!: Rework indent, aligned indent | George Harker | 2023-03-24 | 1 | -28/+73 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | indents now use @indent.X style captures, and indent.PROP for properties to set on those captures, as documented in the help. Captures are: indent.auto indent.begin indent.end indent.dedent indent.branch indent.ignore indent.align indent.zero Properties are: indent.immediate indent.start_at_same_line indent.open_delimiter indent.close_delimiter indent.increment indent.avoid_last_matching_next Multiple opening delims on one line and multiple closing on a line are collapsed so as not to over indent, The final line of @indent.align blocks which must in some cases be treated specially to avoid clashing with the next line is treated the same regardless of whether the @indent.align capture actually uses aligned indentation or just normal indentation. The indent.avoid_last_matching_next property controls this. Adjust python to use these. List, set, dict and tuple all use @indent.align which permits both hanging and aligned styles. Finally, try: on it’s own will indent when typing live but make no guaranteeds about whole-file formatting. Includes lucario387:fix-align-indent | |||||
| * | fix: shim 0.9 deprecations | Lewis Russell | 2023-03-24 | 5 | -7/+26 | |
| | | ||||||
| * | fix(health): check required neovim version (#4330) | kylo252 | 2023-03-24 | 1 | -2/+2 | |
| | | | | | | | | * fix(health): check required neovim version * fixup(health)!: require v0.8.3 for is_in_node_range * fixup(readme)!: always prefer latest neovim | |||||
| * | fix(v): add `vlang` as filetype | Turiiya | 2023-03-22 | 1 | -0/+1 | |
| | | ||||||
| * | feat: add Bass | Amaan Qureshi | 2023-03-22 | 1 | -0/+8 | |
| | | ||||||
| * | feat(html): injections in <script type> | Benny Powers | 2023-03-22 | 1 | -0/+23 | |
| | | | | | | | refactor(html): remove superfluous injection query fix(html): associate "module" type with "javascript" | |||||
| * | fix(parsers): alias sh to bash | ObserverOfTime | 2023-03-21 | 1 | -0/+1 | |
| | | ||||||
| * | feat: add Luadoc | Amaan Qureshi | 2023-03-20 | 1 | -0/+8 | |
| | | ||||||
| * | Use pre-generated parser files for sql grammar | derekstride | 2023-03-16 | 1 | -1/+1 | |
| | | ||||||
| * | fix: check if repo location exists for local paths | Amaan Qureshi | 2023-03-16 | 1 | -0/+3 | |
| | | ||||||
| * | feat: add LLVM TableGen | Amaan Qureshi | 2023-03-16 | 1 | -0/+8 | |
| | | ||||||
| * | fix(windows): treat any non-cmd shell as powershell like in selector | Adam Wolski | 2023-03-16 | 1 | -3/+3 | |
| | | ||||||
| * | fix(windows): fix invalid powershell separator during install | Adam Wolski | 2023-03-16 | 1 | -1/+5 | |
| | | ||||||
| * | fix: change folding algorithm to fix Python indents | George Harker | 2023-03-15 | 1 | -4/+35 | |
| | | ||||||
| * | parsers: add tree-sitter-mlir parser | Ramkumar Ramachandra | 2023-03-14 | 1 | -0/+10 | |
| | | | | | | | The parser is currently in development, and 60-80% of MLIR files in the test suite of MLIR, within the Arith, Math, SCF, Tensor, and Linalg dialects parse successfully. | |||||
| * | refactor!: remove setting the update strategy | Amaan Qureshi | 2023-03-11 | 2 | -9/+2 | |
| | | ||||||
| * | docs: add missing fields from InstallInfo, update code docs related to ↵ | Amaan Qureshi | 2023-03-11 | 2 | -0/+19 | |
| | | | | | installation | |||||
| * | chore: clean up parsers.lua | Amaan Qureshi | 2023-03-11 | 1 | -129/+16 | |
| | | ||||||
| * | feat: add Hare | Amaan Qureshi | 2023-03-11 | 1 | -0/+8 | |
| | | ||||||
| * | feat: add gitconfig | Amaan Qureshi | 2023-03-10 | 1 | -0/+10 | |
| | | ||||||
| * | chore(gleam): update parser info | Amaan Qureshi | 2023-03-10 | 1 | -2/+2 | |
| | | ||||||
| * | fix(gleam): add scanner.c to parsers list & update lockfile | Amaan Qureshi | 2023-03-10 | 1 | -2/+1 | |
| | | ||||||
| * | feat: add Squirrel | Amaan Qureshi | 2023-03-07 | 1 | -0/+8 | |
| | | ||||||
| * | feat: add Uxn Tal | Amaan Qureshi | 2023-03-07 | 1 | -0/+10 | |
| | | ||||||
| * | docs: fix readme names | ObserverOfTime | 2023-03-04 | 1 | -3/+3 | |
| | | ||||||
| * | feat: add luap | Amaan Qureshi | 2023-03-04 | 1 | -0/+9 | |
| | | ||||||
| * | feat: add cue | Amaan Qureshi | 2023-03-04 | 1 | -0/+8 | |
| | | ||||||
| * | markdown!: switch to scanner.c | Christian Clason | 2023-03-02 | 1 | -2/+2 | |
| | | ||||||
| * | Update gdscript queries (#4405) | Preston Knopp | 2023-03-02 | 1 | -0/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * locals(gdscript): update locals * folds(gdscript): add folds * indents(gdscript): update indents with notes * highlights(gdscript): update highlights * docs(gdscript): add gdscript maintainer * indents(gdscript): add ERROR auto indent Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> * highlights(gdscript): use text.uri for get_node and node_path * highlights(gdscript): add "@" of annotation as attribute * highlights(gdscript): use keyword.operator for "new", match all attribute_call * highlights(gdscript): update (underscore) and (pattern_open_ending) --------- Co-authored-by: Amaan Qureshi <amaanq12@gmail.com> | |||||
