summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2022-10-16feat!: remove obsolete `TS*` highlight groupsChristian Clason
2022-08-03Correct previously edited docs filelfenzo
2022-08-03Updated nvim-tresitter.txt doclfenzo
2022-07-11doc: fix typos (#3163)adrian5
2022-07-08feat: add option to auto-install missing parsers (#3130)Jonas Strittmatter
2022-06-20Add support for custom parser install locations #2959 (#3031)Duncan McDougall
2022-04-18chore: deprecate ts_utils.get_node_textStephan Seitz
2022-04-10chore!: deprecate ensure_installed=maintainedChristian Clason
BREAKING CHANGE: specify explicit list or use `ensure_installed='all'` (not recommended)
2022-04-10fix(modules): enabling disabling per buffer and globallykiyan
When a module is disabled by default in the config, running TSBufEnable will not enable the module because the is_enabled function will always return false, thus the module not being enabled. Also, disabling/enabling the buffers is flaky. This commit adds per buffer check when the module is not disabled. It also makes the enable and disable more indempotent. i've also renamed TS*All to TS*. Fixes #2754
2022-03-30Add capture groups for remaining builtin highlight groupsGregory Anders
Some builtin highlight groups (see `:h group-name`) do not yet have associated capture groups, so add them.
2022-02-19refacto: expose a function to set custom capture for the higlighterkiyan
BREAKING: deprecate custom_captures from highlight config. This allows plugin authors to extend the map. It also avoids settings user configuration specific values during the highlighter initialization (SOC). Not sure how much value this brings, and might potentially break a lot of people configurations. This is questionable.
2022-02-11chore: update init.vim refs to init.luakiyan
2022-02-11chore: remove lua heredocs in documentation and readmekiyan
2022-01-22docs: add missing vim table in the examplemonkoose
2021-12-18Make example config more easy to readSantos Gallegos
Ref https://github.com/nvim-treesitter/nvim-treesitter/issues/2095#issuecomment-992759818
2021-11-28Fix docspatrick96
2021-11-28Completely remove condition from documentationpatrick96
2021-11-28Make disable accept a functionpatrick96
Replaces the condition setting (though it does the exact inverse)
2021-11-28Rename cond to conditionpatrick96
2021-11-28Add documentation for cond settingpatrick96
Ref: #1994
2021-11-05docs: move description to the first lineDundar Göc
This will make the description of nvim-treesitter show up in the LOCAL ADDITIONS section of the help text. So this |nvim-treesitter| instead becomes |nvim-treesitter| Treesitter configurations and abstraction layer for Neovim.
2021-11-02chore: fix typosDundar Göc
2021-09-14docs: Update nvim-treesitter-highlightsSergio Alejandro Vargas
- Fix misspellings, missing punctuation and capitalization. - Clarify whether highlights apply to identifiers (e.g. `TSConstant`) or to literal values (e.g. `TSConstBuiltin`). - Extend examples. See #1767
2021-07-14add @tag.attribute for html like attributeslmlorca
2021-07-13doc: be more explicit about additional_vim_regex_highlighting (#1561)Stephan Seitz
2021-07-11Highlights: define string.special (#1551)Santos Gallegos
* Highlights: define string.special This was in our CONTRIBUTING.md file, but wasn't defined. Fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/1405 * Use string.escape
2021-07-08Folds: support 'foldminlines'Munif Tanjim
2021-07-05Docs: mention that indentation is still experimentalSantos Gallegos
2021-07-05Docs: document `additional_vim_regex_highlighting` optionSantos Gallegos
2021-07-04feat(keywords) merge return and yield into keyword.return groupantonk52
2021-07-04feat(keywords) add keyword.return & keyword.yieldantonk52
2021-07-04Re-introduce prompting for installationShane Hird
2021-07-04TSUpdate does not install if up to dateShane Hird
2021-06-22fix typo: Enviroment -> Environmentkmarius
2021-04-24docs: update nvim-treesitter-highlightsMunif Tanjim
2021-04-22docs: Update vimdoc fileThomas Vigouroux
Adds the new maintainers (that were actually added a long time ago), fix inconsistent formatting, and unneeded or old/wrong docs.
2021-04-14feat: Add TSEditQueryUserAfterStephan Seitz
2021-04-14docs: Add documentation for :TSEditQueryStephan Seitz
2021-04-06TSModuleInfo: change docMarco Hinz
2021-03-30refactor(all): language tree adaption (#1105)Steven Sojka
2021-03-24feat(install): allow ignore list when installing parsers (#1098)Steven Sojka
2021-03-12Add comment parser to highlight comment tags (#893)Santos Gallegos
Closes #236
2021-03-04[highlights] Add TSSymbol highlight groupDennis B
Addresses issue #892 Ruby and Dart literal symbols will now be highlighted by the new TSSymbol highlight group, which itself will, by default, link to the Vim Identifier highlight group. Vim theme authors can then set their TSSymbol colors. Symbol highlighting can apply to a number of languages as noted in the following Wikipedia page: https://en.wikipedia.org/wiki/Symbol_(programming) Not just for Ruby and Dart.
2021-02-11HTML: improve highlights & injectionsSantos Gallegos
2021-02-01Update documentation for `Enable/Disable` commands.echasnovski
2021-02-01Implement `TSToggleAll`.echasnovski
2021-02-01Implement `TSBufToggle`.echasnovski
2020-12-21Remove deprecated highlightsdelphinus
2020-12-13Fix doc typoJonathan
2020-12-07Add TSComment to docsrockerBOO