| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-12-07 | docs: Update docs for missing groups, re-order alphabetically | rockerBOO | |
| 2020-10-26 | feat(install): add "maintained" option to only install maintained parsers | Stephan Seitz | |
| Unmaintained parsers only give users little benefit but take sometimes a a long time to install (e.g. Markdown, Julia, Haskell parser). We could recommend to only install maintained parsers by default. | |||
| 2020-10-19 | update docs | kiyan42 | |
| 2020-10-19 | docs(highlights): document LanguageTree. | Thomas Vigouroux | |
| 2020-10-11 | Use utils get_node_text to get line content and trim all whitespaces. | Kristijan Husak | |
| 2020-10-11 | Remove old statusline implementation with new one. | Kristijan Husak | |
| 2020-10-11 | Add implementation for improved statusline. Closes #545. | Kristijan Husak | |
| 2020-10-10 | fix(highlights): Add TSNamespace highlight | Stephan Seitz | |
| Start adding highlights for - C++ - Rust (including other scoped_identifier/scoped_type_identifier fixes) - JS (only namespace_import) Addresses #516 | |||
| 2020-09-25 | chore(modules): remove refactor module | Steven Sojka | |
| 2020-09-14 | Fix #307: Use and document TSVariable/TSVariableBuiltin in all languages | Stephan Seitz | |
| 2020-09-14 | Fix typo in foldexpr example | Sh3Rm4n | |
| 2020-09-11 | Highlight definition: mention updatetime in docs | Santos Gallegos | |
| Ref https://github.com/nvim-treesitter/nvim-treesitter/issues/435 | |||
| 2020-09-08 | Fold: update docs | Santos Gallegos | |
| Document foldnestmax. | |||
| 2020-09-06 | Highlights: default TSError to Normal | Santos Gallegos | |
| This provides a better experience for users without any extra config. | |||
| 2020-09-02 | Change 'install' -> 'index' | Constantine Theocharis | |
| 2020-09-02 | Modify description slightly and place modeline at the end | Constantine Theocharis | |
| 2020-09-02 | Add section 'Performance' to docs | Constantine Theocharis | |
| 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 | feat(refactor.navigation): add navigation.goto_{next,previous}_usage | Stephan Seitz | |
| 2020-08-26 | docs: fix syntax error in README example | Stephan Seitz | |
| 2020-08-20 | Docs: remove enable=true from textobjects module | evakuator | |
| 2020-08-18 | Docs: documentation for modules/submodules | Santos Gallegos | |
| 2020-08-17 | Merge pull request #305 from theHamsta/textobjects-submodules | Steven Sojka | |
| Textobjects submodules | |||
| 2020-08-17 | Avoid duplication of help tags | delphinus | |
| 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 | Textobjects: provide mappings for all swap/goto functions | Stephan Seitz | |
| 2020-08-16 | docs(hlgroups): document TSAnnotation, TSCurrentScope, TSDefinition, | Stephan Seitz | |
| TSDefinitionUsage | |||
| 2020-08-16 | feat(highlights): add is predicate | Steven Sojka | |
| 2020-08-14 | docs: document the new runtime query system | Thomas Vigouroux | |
| 2020-08-09 | Lua: highlight function name | Santos Gallegos | |
| 2020-08-02 | Add TSUninstall | Stephan Seitz | |
| 2020-08-02 | Add TSUpdate command to update parsers | Stephan Seitz | |
| 2020-07-29 | Docs: rework readme | Santos Gallegos | |
| - Fix some typos - Remove some unnecessary text that was taking space - Use double quotes in lua examples (this seems to be the convention in the source code) - Sort list of languages so they are easy to find. | |||
| 2020-07-27 | Docs: format and fixes | Santos Gallegos | |
| Format the docs to be consisted and some typos. | |||
| 2020-07-27 | Parsers: add reStructuredText | Santos Gallegos | |
| 2020-07-14 | Update documentation for new modules 'refactor'/'textobjects' | Stephan Seitz | |
| 2020-07-13 | Fix #167: Add custom_captures config key to set highlights for custom queries | Stephan Seitz | |
| 2020-07-01 | remove doc/tags | Sainnhepark | |
| 2020-06-30 | Rgenerate doc/tags | Stephan Seitz | |
| 2020-06-29 | Extend documentation for TSError | Stephan Seitz | |
| 2020-06-28 | Fix typo in documentation: `labe:` -> `label:` | Stephan Seitz | |
| 2020-06-27 | update docs for TSInstall | kiyan42 | |
| 2020-06-26 | highlight: use custom highlight groups | Thomas Vigouroux | |
| 2020-06-19 | add winnr to get_node_at_cursor | kiyan42 | |
| 2020-06-19 | update docs | kiyan42 | |
| 2020-06-01 | Fix example mappings | Santos Gallegos | |
| 2020-05-25 | docs: document folding | Thomas Vigouroux | |
| 2020-05-19 | docs: missing EOF for init.vim | K Lauer | |
| 2020-05-15 | Expose internal api. | kiyan42 | |
| - add `exposed_state` to expose 'current_node' and 'cursor_pos' for a current buffer to the user. - add `get_buf_state` and `get_node_api` for users. - add documentation about api functions. - remove `node_movement` module which should be done in user side. | |||
| 2020-05-12 | refacto/feat: better handling of parser updates | kiyan42 | |
| features: - node_movement is moving between scopes. - add selection initialization from normal mode - add a decremental selection improvements: - attach to buffer to run tree parsing on change - run state update on CursorMoved - the buffer state is: ``` { cursor_pos = { row=row, col=col }, current_node = node_under_cursor, selection = { range = nil, -- activates when starting a selection nodes = {} -- filling up when starting an incremental selection }, parser = parser, -- parser for current buffer } ``` - refacto all the modules reliant on parsing the tree, update the current nodes, get the current nodes... fixes: - fix has_parser to look for .so libraries - fix should select the whole file when selection root in selection | |||
