summaryrefslogtreecommitdiff
path: root/autoload
AgeCommit message (Collapse)Author
2022-07-18chore: cleanup main file, move statusline in modulekiyan
2022-04-30refactor!: update to Neovim 0.7 APIsChristian Clason
* set highlight groups via nvim_set_hl * define autocommands via nvim_create_autocmd * port plugin/nvim-treesitter.vim to Lua * port healthcheck to Lua
2022-04-30chore!: remove ensure_installed='maintained'Christian Clason
Removes all support (and tests) for the parser category "maintained", as this is no longer a useful category. BREAKING CHANGE: replace `ensure_installed='maintained'` by an explicit list of parsers, or use `'all'` (not recommended).
2021-10-11feat(healthcheck): support native lua healthchecks, and fixesJavier López
After neovim/neovim#15259 lua healthchecks are called directly and are prefered over neovim autoload ones. The discover of Lua ones requires the function to be named "check()". Also the mentioned PR changed the design of healthchecks to not use output capturing, therefore avoid printing and instead concatenate and call the health functions.
2021-04-14feat: Add TSEditQueryStephan Seitz
2020-10-26feat(install): add "maintained" option to only install maintained parsersStephan 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-19start indent modulekiyan42
2020-10-11Remove old statusline implementation with new one.Kristijan Husak
2020-10-11Add implementation for improved statusline. Closes #545.Kristijan Husak
2020-09-05Completion: use custom instead of customlistSantos Gallegos
Fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/396
2020-09-04Refactor: move completion functions to autoloadSantos Gallegos
2020-05-25feat: add syntax-based foldingThomas Vigouroux
2020-05-05feat: provide a statusline indicatorThomas 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-04-21feat: add checkhealthkiyan42