| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-09-14 | Fix #307: Use and document TSVariable/TSVariableBuiltin in all languages | Stephan Seitz | |
| 2020-09-14 | Folds: rename query files to folds.scm to be consistent | Santos Gallegos | |
| We use plural names for all query files except folds. | |||
| 2020-09-14 | Fix typo in foldexpr example | Sh3Rm4n | |
| 2020-09-14 | Merge pull request #452 from kyazdani42/jsx-folds | Steven Sojka | |
| Jsx fold | |||
| 2020-09-13 | Bash: fix hl capture groups | Santos Gallegos | |
| Fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/387 | |||
| 2020-09-13 | fix(cpp highlights): Use `@include` for preproc_include (fix #445) | Stephan Seitz | |
| 2020-09-12 | fix ocaml highlights | Pau Ruiz Safont | |
| Function matching was wrongly parenthesized, parameter detection was too eager and it was wrongly matching all + and - as delimiters | |||
| 2020-09-12 | add jsx fold on jsx_element only | kyazdani42 | |
| 2020-09-12 | Update PHP query | Shirasaka | |
| 2020-09-12 | TextObjects: refactor wrong func names | Santos Gallegos | |
| Reading the code, these functions should be named differently https://github.com/nvim-treesitter/nvim-treesitter/blob/a755017dd52947672af458743b88e59a59cd592f/lua/nvim-treesitter/query.lua#L203-L203 | |||
| 2020-09-12 | - Fix TSType and TSPunctuationSpecial | TravonteD | |
| Move class and module names to @type to be consistent with the other languages. (fixes #448) Use @punction.special for interpolation brackets. (fixes #449) | |||
| 2020-09-11 | Highlight definition: mention updatetime in docs | Santos Gallegos | |
| Ref https://github.com/nvim-treesitter/nvim-treesitter/issues/435 | |||
| 2020-09-11 | Yield meaningful error messages in iter_cmd{,_sync} when cmd.err == nil | Stephan Seitz | |
| 2020-09-11 | maintenance(ocaml): adapt queries to nvim-treesitter | Pau Ruiz Safont | |
| 2020-09-11 | feat(queries): pull ocaml queries from upstream | Pau Ruiz Safont | |
| 2020-09-11 | ci: fix wrong queries | Thomas Vigouroux | |
| 2020-09-11 | ci: check capture names in queries | Thomas Vigouroux | |
| 2020-09-11 | Show up logo | Santos Gallegos | |
| Too good to be hidden | |||
| 2020-09-11 | Allow to call setup on already loaded modules. | Santos Gallegos | |
| 2020-09-10 | Improve startuptime | Santos Gallegos | |
| - Don't load everything at startup - Don't define an autocomand for each module and for each supported lang (this creates nxm autocomand!) | |||
| 2020-09-10 | Merge pull request #421 from steelsojka/add-missing-js-ops | Steven Sojka | |
| fix(highlights): add missing js operators | |||
| 2020-09-10 | fix(highlights): add missing js operators | Steven Sojka | |
| 2020-09-10 | Find package path based on the Lua source file | Markus Koller | |
| This is more robust compared to the previous method where we walked up the tree and matched on the directory name, which also required that the repository was cloned in a directory named `nvim-treesitter`. | |||
| 2020-09-10 | Add folding for local functions in lua | Nolan Prochnau | |
| 2020-09-10 | Ocaml: fix parser | Santos Gallegos | |
| Paths were changed https://github.com/tree-sitter/tree-sitter-ocaml/pull/41 | |||
| 2020-09-08 | feat(C++ highlights): highlight operator_name as function | Stephan Seitz | |
| 2020-09-08 | C/C++ locals: Deduplicate C++ locals contained in C | Stephan Seitz | |
| 2020-09-08 | Add C++ folds and C comment/preproc folds | Stephan Seitz | |
| 2020-09-08 | Fix #418: iterator function should always return an iterator | Stephan Seitz | |
| Even if it's an empty iterator. | |||
| 2020-09-08 | feat(parsers): add filetype PKGBUILD | Stephan Seitz | |
| 2020-09-08 | Import treesitter.install only when needed | Santos Gallegos | |
| 2020-09-08 | Improve startup performance | Santos Gallegos | |
| 2020-09-08 | use keyword.function instead of function | kyazdani42 | |
| 2020-09-08 | fix function/end keywords not applied for every scope | kyazdani42 | |
| 2020-09-08 | Queries: merge query_extensions into base_language_map | Santos Gallegos | |
| These two are doing the same currently. | |||
| 2020-09-08 | Fold: update docs | Santos Gallegos | |
| Document foldnestmax. | |||
| 2020-09-07 | fix using highlight query extension for every query type | kyazdani42 | |
| 2020-09-07 | Incremental selection: fix skipping some nodes | Santos Gallegos | |
| The range from ts nodes are a little different than neovim's nodes. They start at 0 and the end is exclusive. For example, a nvim range (1, 3, 2, 4) is the equivalent to the ts range (0, 2, 1, 4). Since we may hit parent nodes that have the same range as its child, we skip those till we find one that actually changes the selection (since this is the relevant part for the user). Fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/232 | |||
| 2020-09-07 | Fold: respect max_fold_level from 'foldnestmax' | Santos Gallegos | |
| 2020-09-07 | go locals: remove unused strip! directive | Stephan Seitz | |
| 2020-09-06 | rst: remove unused captures | Santos Gallegos | |
| This is causing an error. | |||
| 2020-09-06 | fix: ocaml highlight | Pau Ruiz Safont | |
| The string.special group was removed from highlight.lua, replace its uses by the string group. | |||
| 2020-09-06 | fix: contional > conditional in lua hl.scm | kyazdani42 | |
| 2020-09-06 | fix bash highlight | kyazdani42 | |
| 2020-09-06 | Lua: update highlights | Santos Gallegos | |
| 2020-09-06 | Lua: fix loop and conditional keywords highlights | Santos Gallegos | |
| 2020-09-06 | feat(folds): add ts and js folds | Steven Sojka | |
| 2020-09-06 | change @meta to @type for derive directives because @meta is not defined | kiyan42 | |
| 2020-09-06 | fix(highlights): fix ts parameter highlights | Steven Sojka | |
| 2020-09-06 | Highlights: default TSError to Normal | Santos Gallegos | |
| This provides a better experience for users without any extra config. | |||
