| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | add scanner file for fennel parser | TravonteD | 2020-09-02 | 1 | -1/+1 | |
| | | ||||||
| * | health: add fold queries to check health | Thomas Vigouroux | 2020-09-01 | 1 | -1/+1 | |
| | | ||||||
| * | docs(fold): document and comment | Thomas Vigouroux | 2020-09-01 | 2 | -0/+10 | |
| | | ||||||
| * | fold(c): ignore compound statements | Thomas Vigouroux | 2020-09-01 | 1 | -1/+0 | |
| | | ||||||
| * | fix(fold): fix #350 | Thomas Vigouroux | 2020-09-01 | 1 | -4/+10 | |
| | | | | | | | | | | Also correctly handle things like : if (foo) { } if (bar) { } | |||||
| * | fix(fold): revamp fold | Thomas Vigouroux | 2020-09-01 | 3 | -13/+62 | |
| | | | | | | | | | fix(fold): typo fix(fold): remove debug and add queries fix(fold): fallback to local scopes for folds | |||||
| * | use xmap in detach | evakuator | 2020-09-01 | 1 | -1/+1 | |
| | | ||||||
| * | use xmap instead of vmap in textobjects | evakuator | 2020-09-01 | 2 | -3/+3 | |
| | | ||||||
| * | docs: Add CODEOWNERS file | Thomas Vigouroux | 2020-09-01 | 1 | -0/+7 | |
| | | ||||||
| * | feat: add query filetype | Thomas Vigouroux | 2020-09-01 | 1 | -0/+11 | |
| | | ||||||
| * | feat(refactor.navigation): allow a `fallback_function` for goto_definition | Stephan Seitz | 2020-08-31 | 3 | -7/+19 | |
| | | | | | | `fallback_function` is called when nvim-treesitter can not resolve the variable under the cursor. | |||||
| * | Fix(modules): simplify configs.setup | Stephan Seitz | 2020-08-31 | 1 | -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 attach | Stephan Seitz | 2020-08-31 | 1 | -2/+2 | |
| | | ||||||
| * | Avoid enabling disabled modules (even if they were disabled immediately) | Stephan Seitz | 2020-08-31 | 1 | -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}_usage | Stephan Seitz | 2020-08-31 | 7 | -20/+72 | |
| | | ||||||
| * | feat(CI): auto-update README.md | Stephan Seitz | 2020-08-31 | 3 | -10/+17 | |
| | | ||||||
| * | remove second check | Oleg Matrokhin | 2020-08-30 | 1 | -2/+1 | |
| | | ||||||
| * | fix get_package_path function for paths with trailing slash | Oleg Matrokhin | 2020-08-30 | 1 | -2/+2 | |
| | | ||||||
| * | C highlights: make `preproc_defined` @function.macro | Stephan Seitz | 2020-08-30 | 1 | -1/+4 | |
| | | ||||||
| * | docs(README): add link to Windows wiki page | Stephan Seitz | 2020-08-27 | 1 | -1/+1 | |
| | | ||||||
| * | Add Windows support (mingw) | Stephan Seitz | 2020-08-27 | 2 | -15/+20 | |
| | | ||||||
| * | fix(health): only check installed parsers | Thomas Vigouroux | 2020-08-27 | 1 | -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 workarounds | Thomas Vigouroux | 2020-08-27 | 1 | -0/+5 | |
| | | ||||||
| * | C highlights: add bitwise-xor operator | Stephan Seitz | 2020-08-27 | 1 | -0/+2 | |
| | | ||||||
| * | Merge pull request #348 from theHamsta/readme-comma | Steven Sojka | 2020-08-26 | 2 | -2/+2 | |
| |\ | | | | | docs: fix syntax error in README example | |||||
| | * | docs: fix syntax error in README example | Stephan Seitz | 2020-08-26 | 2 | -2/+2 | |
| | | | ||||||
| * | | fix(locals): add js namespace import as definition | Steven Sojka | 2020-08-26 | 1 | -0/+3 | |
| |/ | ||||||
| * | feat(CI): print text what went wrong when README CI fails | Stephan Seitz | 2020-08-25 | 1 | -0/+6 | |
| | | ||||||
| * | Fix #292: Add parser links to README.md | Stephan Seitz | 2020-08-25 | 4 | -58/+151 | |
| | | ||||||
| * | fix(locals): add nil guard for definition id creation | Steven Sojka | 2020-08-25 | 1 | -1/+1 | |
| | | ||||||
| * | feat(highlights): add ocaml | Pau Ruiz Safont | 2020-08-24 | 1 | -0/+147 | |
| | | ||||||
| * | feat(c/cpp highlights): highlight pointer/reference parameters | Stephan Seitz | 2020-08-24 | 2 | -0/+5 | |
| | | ||||||
| * | C++ highlights: Add initial support for attributes | Stephan Seitz | 2020-08-22 | 1 | -0/+6 | |
| | | ||||||
| * | Merge pull request #330 from steelsojka/fix-do-not-reattach | Steven Sojka | 2020-08-22 | 10 | -42/+76 | |
| |\ | | | | | fix(modules): do not reattach if already attached | |||||
| | * | fix(modules): do not reattach if already attached | Steven Sojka | 2020-08-22 | 10 | -42/+76 | |
| | | | ||||||
| * | | fix(smart_rename): fix usages call | Steven Sojka | 2020-08-21 | 1 | -1/+1 | |
| |/ | ||||||
| * | Merge pull request #331 from theHamsta/sudo-style-check | Steven Sojka | 2020-08-21 | 1 | -1/+1 | |
| |\ | | | | | Run style check as sudo | |||||
| | * | fix(CI): Run style check as sudo | Stephan Seitz | 2020-08-21 | 1 | -1/+1 | |
| |/ | ||||||
| * | Python highlights: add additional operators | Stephan Seitz | 2020-08-20 | 1 | -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.builtin | Avi Dessauer | 2020-08-20 | 1 | -1/+1 | |
| | | ||||||
| * | Deduplicate queries/rust/highlights.scm | Avi Dessauer | 2020-08-20 | 1 | -1/+0 | |
| | | | | Co-authored-by: TravonteD <tman1300@aol.com> | |||||
| * | Highlight operators + improve consistency with Vim syntax | Avi Dessauer | 2020-08-20 | 1 | -3/+37 | |
| | | ||||||
| * | Docs: remove enable=true from textobjects module | evakuator | 2020-08-20 | 2 | -4/+1 | |
| | | ||||||
| * | Docs: fix textobjects | evakuator | 2020-08-20 | 1 | -1/+4 | |
| | | ||||||
| * | Docs: documentation for modules/submodules | Santos Gallegos | 2020-08-18 | 2 | -302/+685 | |
| | | ||||||
| * | Merge pull request #324 from stsewd/python-fix | Steven Sojka | 2020-08-18 | 1 | -3/+3 | |
| |\ | | | | | Python: fix some highlights | |||||
| | * | Python: fix some highlights | Santos Gallegos | 2020-08-18 | 1 | -3/+3 | |
| |/ | | | | These aren't valid lua patterns | |||||
| * | Merge pull request #323 from nathunsmitty/master | Steven Sojka | 2020-08-18 | 1 | -6/+6 | |
| |\ | | | | | Rename @function.method to @method | |||||
| | * | @function.method -> @method | Nathan Smith | 2020-08-17 | 1 | -6/+6 | |
| |/ | ||||||
| * | Python: update highlights | Santos Gallegos | 2020-08-17 | 1 | -4/+15 | |
| | | | | | | - Fix "as" outside imports - Add builtin classes and constants | |||||
