aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* add scanner file for fennel parserTravonteD2020-09-021-1/+1
|
* health: add fold queries to check healthThomas Vigouroux2020-09-011-1/+1
|
* docs(fold): document and commentThomas Vigouroux2020-09-012-0/+10
|
* fold(c): ignore compound statementsThomas Vigouroux2020-09-011-1/+0
|
* fix(fold): fix #350Thomas Vigouroux2020-09-011-4/+10
| | | | | | | | | Also correctly handle things like : if (foo) { } if (bar) { }
* fix(fold): revamp foldThomas Vigouroux2020-09-013-13/+62
| | | | | | | | fix(fold): typo fix(fold): remove debug and add queries fix(fold): fallback to local scopes for folds
* use xmap in detachevakuator2020-09-011-1/+1
|
* use xmap instead of vmap in textobjectsevakuator2020-09-012-3/+3
|
* docs: Add CODEOWNERS fileThomas Vigouroux2020-09-011-0/+7
|
* feat: add query filetypeThomas Vigouroux2020-09-011-0/+11
|
* feat(refactor.navigation): allow a `fallback_function` for goto_definitionStephan Seitz2020-08-313-7/+19
| | | | | `fallback_function` is called when nvim-treesitter can not resolve the variable under the cursor.
* Fix(modules): simplify configs.setupStephan Seitz2020-08-311-13/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This prevents a really weird bug were the following function call (after loading the activated modules) could activate `highlight_current_scope` ```lua require "nvim-treesitter.configs".setup( { highlight = { enable = false, -- false will disable the whole extension disable = {"html", "lua"} -- list of language that will be disabled }, refactor = { highlight_current_scope = { enable = false, inverse_highlighting = true, disable = {"python", "markdown"} }, highlight_definitions = { enable = true, disable = {"markdown"} }, }, ensure_installed = "all", disable = {"markdown"}, -- list of language that will be disabled } ) ```
* fix(highlight_current_scope): Ensure that detach is a inverse of attachStephan Seitz2020-08-311-2/+2
|
* Avoid enabling disabled modules (even if they were disabled immediately)Stephan Seitz2020-08-311-7/+8
| | | | | This might be safer for the case that attach/detach are not inverse to each other. Disabled modules shouldn't ever be activated.
* feat(refactor.navigation): add navigation.goto_{next,previous}_usageStephan Seitz2020-08-317-20/+72
|
* feat(CI): auto-update README.mdStephan Seitz2020-08-313-10/+17
|
* remove second checkOleg Matrokhin2020-08-301-2/+1
|
* fix get_package_path function for paths with trailing slashOleg Matrokhin2020-08-301-2/+2
|
* C highlights: make `preproc_defined` @function.macroStephan Seitz2020-08-301-1/+4
|
* docs(README): add link to Windows wiki pageStephan Seitz2020-08-271-1/+1
|
* Add Windows support (mingw)Stephan Seitz2020-08-272-15/+20
|
* fix(health): only check installed parsersThomas Vigouroux2020-08-271-20/+7
| | | | | This is to avoid awfully long checkhealths. And not installed parsers can be infered from the fact that they are not listed.
* docs: document foldmethod workaroundsThomas Vigouroux2020-08-271-0/+5
|
* C highlights: add bitwise-xor operatorStephan Seitz2020-08-271-0/+2
|
* Merge pull request #348 from theHamsta/readme-commaSteven Sojka2020-08-262-2/+2
|\ | | | | docs: fix syntax error in README example
| * docs: fix syntax error in README exampleStephan Seitz2020-08-262-2/+2
| |
* | fix(locals): add js namespace import as definitionSteven Sojka2020-08-261-0/+3
|/
* feat(CI): print text what went wrong when README CI failsStephan Seitz2020-08-251-0/+6
|
* Fix #292: Add parser links to README.mdStephan Seitz2020-08-254-58/+151
|
* fix(locals): add nil guard for definition id creationSteven Sojka2020-08-251-1/+1
|
* feat(highlights): add ocamlPau Ruiz Safont2020-08-241-0/+147
|
* feat(c/cpp highlights): highlight pointer/reference parametersStephan Seitz2020-08-242-0/+5
|
* C++ highlights: Add initial support for attributesStephan Seitz2020-08-221-0/+6
|
* Merge pull request #330 from steelsojka/fix-do-not-reattachSteven Sojka2020-08-2210-42/+76
|\ | | | | fix(modules): do not reattach if already attached
| * fix(modules): do not reattach if already attachedSteven Sojka2020-08-2210-42/+76
| |
* | fix(smart_rename): fix usages callSteven Sojka2020-08-211-1/+1
|/
* Merge pull request #331 from theHamsta/sudo-style-checkSteven Sojka2020-08-211-1/+1
|\ | | | | Run style check as sudo
| * fix(CI): Run style check as sudoStephan Seitz2020-08-211-1/+1
|/
* Python highlights: add additional operatorsStephan Seitz2020-08-201-0/+7
| | | | | This is applies the upstream PR to our repo: https://github.com/tree-sitter/tree-sitter-python/pull/73
* Change self back to variable.builtinAvi Dessauer2020-08-201-1/+1
|
* Deduplicate queries/rust/highlights.scmAvi Dessauer2020-08-201-1/+0
| | | Co-authored-by: TravonteD <tman1300@aol.com>
* Highlight operators + improve consistency with Vim syntaxAvi Dessauer2020-08-201-3/+37
|
* Docs: remove enable=true from textobjects moduleevakuator2020-08-202-4/+1
|
* Docs: fix textobjectsevakuator2020-08-201-1/+4
|
* Docs: documentation for modules/submodulesSantos Gallegos2020-08-182-302/+685
|
* Merge pull request #324 from stsewd/python-fixSteven Sojka2020-08-181-3/+3
|\ | | | | Python: fix some highlights
| * Python: fix some highlightsSantos Gallegos2020-08-181-3/+3
|/ | | | These aren't valid lua patterns
* Merge pull request #323 from nathunsmitty/masterSteven Sojka2020-08-181-6/+6
|\ | | | | Rename @function.method to @method
| * @function.method -> @methodNathan Smith2020-08-171-6/+6
|/
* Python: update highlightsSantos Gallegos2020-08-171-4/+15
| | | | | - Fix "as" outside imports - Add builtin classes and constants