| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-05-15 | Merge pull request #55 from vigoux/install-multiple-args | Kiyan Yazdani | |
| Allow installing multiple parsers at once | |||
| 2020-05-15 | install: allow installing multiple parsers at once | Thomas Vigouroux | |
| This allow commands like so : :TSInstall c rust lua python | |||
| 2020-05-15 | Merge pull request #54 from kyazdani42/feat/expose-api | Thomas Vigouroux | |
| Expose internal api. | |||
| 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 | Merge pull request #45 from kyazdani42/refacto-feat/buf-state-update | Kiyan Yazdani | |
| refacto/feat: better handling of parser updates | |||
| 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 | |||
| 2020-05-12 | Merge pull request #51 from TravonteD/ruby-update | Thomas Vigouroux | |
| Update ruby highlights and locals to conform to contributing.md | |||
| 2020-05-11 | update ruby highlights and locals to conform the new contribution | TravonteD | |
| standards | |||
| 2020-05-11 | Merge pull request #1 from nvim-treesitter/master | TravonteD | |
| Updates from master | |||
| 2020-05-08 | Merge pull request #47 from theHamsta/fix-typo-contributing.md | Kiyan Yazdani | |
| Fix typo in CONTRIBUTING.md | |||
| 2020-05-08 | Fix typo in CONTRIBUTING.md | Stephan Seitz | |
| 2020-05-08 | Merge pull request #46 from theHamsta/fix-typo-readme | Kiyan Yazdani | |
| Fix typo in README.md | |||
| 2020-05-08 | Fix typo in README.md | Stephan Seitz | |
| 2020-05-07 | Merge pull request #40 from vigoux/contributing | Kiyan Yazdani | |
| Add CONTRIBUTING.md | |||
| 2020-05-07 | fix(CONTRIBUTING): typos | Thomas Vigouroux | |
| 2020-05-07 | fix(lua): update queries | Thomas Vigouroux | |
| 2020-05-07 | fix: change locals extraction | Thomas Vigouroux | |
| 2020-05-07 | feat: support suggested highlights | Thomas Vigouroux | |
| 2020-05-07 | docs: add contributig draft | Thomas Vigouroux | |
| 2020-05-07 | Merge pull request #44 from vigoux/statusline | Kiyan Yazdani | |
| Provide a statusline indicator | |||
| 2020-05-07 | docs: add statusline indicator informations. | Thomas Vigouroux | |
| Also document newly added parsers by adding them in the readme. | |||
| 2020-05-05 | feat: provide a statusline indicator | Thomas Vigouroux | |
| It will show the current branch at the cursor going the tree as such. root->node->subnode->leaf If an argument is provided to `statusline`, then the tree will be truncated as follows : ..->subnode->subnode | |||
| 2020-05-03 | Merge pull request #37 from theHamsta/node-movement | Thomas Vigouroux | |
| Add 'nvim-treesitter/node-movement' | |||
| 2020-05-03 | Add documentation for `node_movement`, rename: `textobj` -> ↵ | Stephan Seitz | |
| `incremental_selection` | |||
| 2020-05-03 | Add 'nvim-treesitter/node-movement' | Stephan Seitz | |
| 2020-05-02 | Merge pull request #39 from vigoux/incremental_selection | Kiyan Yazdani | |
| Move textobj module to incremental_selection. | |||
| 2020-05-02 | modules: move textobj to incremental_selection | Thomas Vigouroux | |
| As suggested in #37, rename the textobj module to incremental_selection. Also adds a utility function to get the config of a module. | |||
| 2020-05-01 | Merge pull request #36 from theHamsta/community-parsers | Kiyan Yazdani | |
| Add some more community parsers | |||
| 2020-05-01 | Add some more community parsers | Stephan Seitz | |
| The haskell one really takes long to compile | |||
| 2020-05-01 | Merge pull request #35 from kyazdani42/refacto/config-doc | Thomas Vigouroux | |
| update docs for ensure installed, move modules config in config.modules | |||
| 2020-05-01 | update docs for ensure installed, move modules config in config.modules | kiyan42 | |
| 2020-05-01 | Merge pull request #34 from theHamsta/ensure_installed | Kiyan Yazdani | |
| Add function 'nvim-treesitter/install'.ensure_installed | |||
| 2020-05-01 | Avoid global handle to enable installing multiple parsers in parallel | Stephan Seitz | |
| 2020-05-01 | Add `ensure_installed` option to config | Stephan Seitz | |
| 2020-05-01 | Add function 'nvim-treesitter/install'.ensure_installed | Stephan Seitz | |
| 2020-04-28 | Merge pull request #33 from kyazdani42/doc/add-documentation | Thomas Vigouroux | |
| Doc/add documentation | |||
| 2020-04-28 | add vim documentation | kiyan42 | |
| 2020-04-28 | Merge pull request #32 from kyazdani42/feat/readme-infos | Thomas Vigouroux | |
| edit: add information to the readme | |||
| 2020-04-28 | edit: add information to the readme | kiyan42 | |
| - commands descriptions - list of supported languages | |||
| 2020-04-28 | add documentation | kiyan42 | |
| 2020-04-27 | Merge pull request #30 from kyazdani42/fix/arg-positionning-install | Kiyan Yazdani | |
| fix install by changing cc arguments position | |||
| 2020-04-27 | fix install by changing cc arguments position | kiyan42 | |
| 2020-04-26 | Merge pull request #28 from vigoux/checkhealth-highlight | Kiyan Yazdani | |
| Add highlight to healthchecks | |||
| 2020-04-26 | health(refactor): move checks inside health.lua | Thomas Vigouroux | |
| 2020-04-26 | health: add highlight to healthchecks | Thomas Vigouroux | |
| 2020-04-25 | Merge pull request #23 from vigoux/feature/textobjects | Kiyan Yazdani | |
| Node and scope text objects | |||
| 2020-04-25 | refactor(textobj): remove unnecessary functions | Thomas Vigouroux | |
| 2020-04-25 | refactor(textobj): use configs and don't use VimL | Thomas Vigouroux | |
| 2020-04-25 | textobj: little refactor | Thomas Vigouroux | |
| 2020-04-25 | textobj: add incremental scope selection | Thomas Vigouroux | |
