aboutsummaryrefslogtreecommitdiffstats
path: root/lua
Commit message (Collapse)AuthorAgeFilesLines
...
* parsers(c_sharp): put myself as a maintainerLuxed2021-06-041-1/+1
|
* downcase! directive to use with ruby injectionsderekstride2021-06-041-0/+27
| | | | | | | | | | | | | | | | | ``` (#downcase! "language") ``` downcase! will ensure the metadata value for the specified key will be downcased. If the value is a node, it will downcase the text specified by the node. ``` (#downcase! @node "key") ``` You can also namespace the key with a specific capture, similar to how you can call `(#set! @node "key" "value")`
* Fix 1359: nil check for version in health-checkStephan Seitz2021-06-041-1/+4
|
* fix: return when no `node` found during installationStephan Seitz2021-06-031-0/+1
| | | | Ref: https://github.com/nvim-treesitter/nvim-treesitter/issues/1324#issuecomment-853418596
* Fix #1324: tree-sitter CLI requires nodeStephan Seitz2021-06-031-2/+2
|
* chore: show errors output during async installationStephan Seitz2021-06-011-1/+38
|
* Improve check-queries (#1253)Santos Gallegos2021-05-311-1/+1
| | | | | - Add checks for injections. - Allow queries that start with [A-Z] for highlights only. - Don't stop on the first error, finish checking all queries.
* feat: use the original scss parserelianiva2021-05-261-1/+2
| | | | ..and add myself as the maintainer
* parsers: generate_requires_npm for commonlispStephan Seitz2021-05-181-0/+1
|
* CI: Improved parser installation logicDaniel Kempkens2021-05-181-5/+0
|
* Add requires_generate_from_grammarDaniel Kempkens2021-05-181-0/+1
|
* Initial Elixir supportDaniel Kempkens2021-05-181-0/+8
|
* parsers: remove requires_generate_from_grammar for supercolliderStephan Seitz2021-05-171-1/+0
|
* parsers: fortran no longer requires_generate_from_grammarStephan Seitz2021-05-171-1/+0
|
* Extend CL highlightsStephan Seitz2021-05-171-1/+1
|
* Add support for Common LispStephan Seitz2021-05-171-0/+9
|
* Add config for Dockerfile parser (#1288)Camden Cheek2021-05-111-0/+9
|
* chore(erlang): don't generate parser from grammarThomas Vigouroux2021-05-071-1/+0
|
* Add fish queriesOmar Zeghouani2021-05-071-0/+1
| | | | | | | | | | | | Add isatty as builtin Update function_definition option Update highlights.scm per review Fix list indentation Add maintainer names
* parsers: add tree-sitter-fishStephan Seitz2021-05-071-0/+7
| | | | Addresses #1268
* Fix indentationCamden Cheek2021-04-281-1/+1
|
* Add go-mod tree-sitter configCamden Cheek2021-04-281-0/+10
| | | | | Adds a tree-sitter config for go.mod files as well as highlighting queries.
* highlight: add 'comment' to hlmapMunif Tanjim2021-04-241-1/+3
|
* tests/indent: move common code out of main lua/ directoryJędrzej Boczar2021-04-231-125/+0
|
* move all tests to top-level tests/ directoryJędrzej Boczar2021-04-2353-885/+0
|
* tests/indent: remove indentexpr fixJędrzej Boczar2021-04-231-3/+0
|
* tests/indent: improve assertion to print side-by-side diffJędrzej Boczar2021-04-231-12/+24
|
* tests/indent: use custom assertion with better suited outputJędrzej Boczar2021-04-231-6/+52
|
* tests/indent: add Lua testsJędrzej Boczar2021-04-237-0/+105
|
* tests/indent: improve Rust testsJędrzej Boczar2021-04-2316-13/+217
|
* tests/indent: add `normal o` tests for PythonJędrzej Boczar2021-04-232-8/+40
|
* tests/indent: test cases with `normal o` for C/C++Jędrzej Boczar2021-04-233-15/+108
|
* tests/indent: add multiple C/C++ testsJędrzej Boczar2021-04-2320-11/+211
|
* tests/indent: refactor indent test runner and auto-discover language test filesJędrzej Boczar2021-04-234-64/+66
|
* fix lua style checksJędrzej Boczar2021-04-231-0/+2
|
* tests/indent: add basic examples for C and RustJędrzej Boczar2021-04-237-3/+80
|
* Initial sketch of automated indent testsJędrzej Boczar2021-04-2312-0/+240
|
* fix(folds): use the correct rational operatorGrzegorz Rozdzialik2021-04-231-1/+1
| | | | | Fixes a bug introduced in 41ed83ffc762b611644a311e344b33d5efc01944 Closes #1226
* parsers: Add Fortran parserStephan Seitz2021-04-231-0/+8
| | | | | | | Fixes: https://github.com/nvim-treesitter/nvim-treesitter/issues/1194 Refs: - https://nvim-treesitter.zulipchat.com/#narrow/stream/252271-general/topic/Meeting.20everyone/near/219174700
* feat(incremental_selection): don't require localsThomas Vigouroux2021-04-222-2/+8
|
* parsers: nix no longer requires_generate_from_grammarStephan Seitz2021-04-221-1/+0
| | | | Not required after https://github.com/cstrahan/tree-sitter-nix/pull/11
* fix(folds): always fold more than one lineThomas Vigouroux2021-04-221-1/+3
|
* fix: Sort parsers for :TSInstallInfoStephan Seitz2021-04-211-1/+3
|
* Avoid Lua 5.3 function table.unpackStephan Seitz2021-04-191-1/+1
|
* YAML: update queries (#1203)Santos Gallegos2021-04-181-1/+2
| | | Closes https://github.com/nvim-treesitter/nvim-treesitter-refactor/issues/18
* Fix GDScript highlightingShatur952021-04-181-1/+1
|
* Fix TSEditQuery with several files (#1191)Santos Gallegos2021-04-161-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 messageDaniel Bendel2021-04-151-3/+0
|
* split is_github_or_gitlab againDaniel Bendel2021-04-151-3/+5
|
* remove single-branch and branch arguments on git callDaniel Bendel2021-04-151-3/+1
|