| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-09-03 | preds: declare set! predicate | Thomas Vigouroux | |
| 2020-09-03 | Add warning about required Neovim version | Stephan Seitz | |
| 2020-09-02 | add scanner file for fennel parser | TravonteD | |
| 2020-09-01 | health: add fold queries to check health | Thomas Vigouroux | |
| 2020-09-01 | docs(fold): document and comment | Thomas Vigouroux | |
| 2020-09-01 | fix(fold): fix #350 | Thomas Vigouroux | |
| Also correctly handle things like : if (foo) { } if (bar) { } | |||
| 2020-09-01 | fix(fold): revamp fold | Thomas Vigouroux | |
| fix(fold): typo fix(fold): remove debug and add queries fix(fold): fallback to local scopes for folds | |||
| 2020-09-01 | use xmap in detach | evakuator | |
| 2020-09-01 | use xmap instead of vmap in textobjects | evakuator | |
| 2020-08-31 | feat(refactor.navigation): allow a `fallback_function` for goto_definition | Stephan Seitz | |
| `fallback_function` is called when nvim-treesitter can not resolve the variable under the cursor. | |||
| 2020-08-31 | Fix(modules): simplify configs.setup | Stephan Seitz | |
| 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 } ) ``` | |||
| 2020-08-31 | fix(highlight_current_scope): Ensure that detach is a inverse of attach | Stephan Seitz | |
| 2020-08-31 | Avoid enabling disabled modules (even if they were disabled immediately) | Stephan Seitz | |
| This might be safer for the case that attach/detach are not inverse to each other. Disabled modules shouldn't ever be activated. | |||
| 2020-08-31 | feat(refactor.navigation): add navigation.goto_{next,previous}_usage | Stephan Seitz | |
| 2020-08-30 | remove second check | Oleg Matrokhin | |
| 2020-08-30 | fix get_package_path function for paths with trailing slash | Oleg Matrokhin | |
| 2020-08-27 | Add Windows support (mingw) | Stephan Seitz | |
| 2020-08-27 | fix(health): only check installed parsers | Thomas Vigouroux | |
| This is to avoid awfully long checkhealths. And not installed parsers can be infered from the fact that they are not listed. | |||
| 2020-08-25 | Fix #292: Add parser links to README.md | Stephan Seitz | |
| 2020-08-25 | fix(locals): add nil guard for definition id creation | Steven Sojka | |
| 2020-08-22 | Merge pull request #330 from steelsojka/fix-do-not-reattach | Steven Sojka | |
| fix(modules): do not reattach if already attached | |||
| 2020-08-22 | fix(modules): do not reattach if already attached | Steven Sojka | |
| 2020-08-21 | fix(smart_rename): fix usages call | Steven Sojka | |
| 2020-08-17 | Merge pull request #305 from theHamsta/textobjects-submodules | Steven Sojka | |
| Textobjects submodules | |||
| 2020-08-17 | some refacto, doc fixes and jsx queries | kiyan42 | |
| - compute query language extensions *after* default ones (jsx after javascript) - remove outdated ts_utils functions from docs - add better regex detection to javascript - javascriptreact to use javascript queries - add javascript.jsx to javascript queries - write jsx.scm hl file | |||
| 2020-08-17 | chore(textobjects): split up into submodules | Stephan Seitz | |
| 2020-08-17 | Textobjects: set jump before going to adjacent_textobject | Stephan Seitz | |
| 2020-08-17 | Textobject goto: treat end differently that start | Stephan Seitz | |
| 2020-08-17 | Textobjects: Allow nested textobjects on goto_adjacent | Stephan Seitz | |
| 2020-08-17 | chore(textobject): use query.find_best_match to find next/previous textobject | Stephan Seitz | |
| 2020-08-17 | Textobjects: provide mappings for all swap/goto functions | Stephan Seitz | |
| 2020-08-17 | Textobjects: Add goto_adjacent | Stephan Seitz | |
| 2020-08-17 | Textobjects: add swap feature | Stephan Seitz | |
| 2020-08-16 | Add fennel support | TravonteD | |
| 2020-08-16 | Merge pull request #296 from steelsojka/feat-is-predicate | Steven Sojka | |
| feat(highlights): add is predicate | |||
| 2020-08-16 | Merge pull request #295 from steelsojka/feature/set-scopes-for-definitions | Steven Sojka | |
| feat(defintions): allow setting of scope | |||
| 2020-08-16 | feat(definitions): allow setting of scope | Steven Sojka | |
| 2020-08-16 | feat(highlights): add is predicate | Steven Sojka | |
| 2020-08-15 | fix: check 'after' against third directory | RafaĆ Camlet | |
| 2020-08-15 | Merge pull request #291 from vigoux/post-upstream-work | Steven Sojka | |
| fix: refactor after upstream refactor | |||
| 2020-08-14 | feat: intuitive runtime queries | Thomas Vigouroux | |
| Starting now, runtime queries will be sourced in this order : - Queries that are not in any `after` folder, will serve as a base, with each occurence overwriting the others (that is, .config/nvim/queries has the highest priority) - Queries within the `after` directory will be sourced one after the other. The rationale is that this reminds all the `.vim` files (ftplugin) for example, and this allows both to experiment and to override queries easily. | |||
| 2020-08-14 | fix: refactor after upstream refactor | Thomas Vigouroux | |
| 2020-08-13 | fix(definitions): optimize and fix definition highlighting | Steven Sojka | |
| 2020-08-11 | perf: cache parser file list for performance | Thomas Vigouroux | |
| 2020-08-11 | pass full module path in recurse accumulator to enable/disable sub modules | Laxman Sooriyathas | |
| 2020-08-11 | fix(locals): fix find definition implementation (#274) | Steven Sojka | |
| Co-authored-by: Thomas Vigouroux <39092278+vigoux@users.noreply.github.com> | |||
| 2020-08-11 | fix(queries): don't load queries on startup | Steven Sojka | |
| 2020-08-10 | configs: actually enable and disable on setup | Thomas Vigouroux | |
| 2020-08-10 | fix(highlight): Use TSParameter | Thomas Vigouroux | |
| 2020-08-09 | Change capture groups and add variable highlights | Akin Sowemimo | |
