| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Ocaml: fix parser | Santos Gallegos | 2020-09-10 | 1 | -0/+1 |
| | | | | | Paths were changed https://github.com/tree-sitter/tree-sitter-ocaml/pull/41 | ||||
| * | feat(C++ highlights): highlight operator_name as function | Stephan Seitz | 2020-09-08 | 1 | -0/+2 |
| | | |||||
| * | C/C++ locals: Deduplicate C++ locals contained in C | Stephan Seitz | 2020-09-08 | 2 | -4/+1 |
| | | |||||
| * | Add C++ folds and C comment/preproc folds | Stephan Seitz | 2020-09-08 | 2 | -0/+15 |
| | | |||||
| * | Fix #418: iterator function should always return an iterator | Stephan Seitz | 2020-09-08 | 1 | -3/+3 |
| | | | | | Even if it's an empty iterator. | ||||
| * | feat(parsers): add filetype PKGBUILD | Stephan Seitz | 2020-09-08 | 1 | -1/+1 |
| | | |||||
| * | Import treesitter.install only when needed | Santos Gallegos | 2020-09-08 | 1 | -1/+5 |
| | | |||||
| * | Improve startup performance | Santos Gallegos | 2020-09-08 | 1 | -2/+14 |
| | | |||||
| * | use keyword.function instead of function | kyazdani42 | 2020-09-08 | 1 | -3/+3 |
| | | |||||
| * | fix function/end keywords not applied for every scope | kyazdani42 | 2020-09-08 | 1 | -3/+7 |
| | | |||||
| * | Queries: merge query_extensions into base_language_map | Santos Gallegos | 2020-09-08 | 1 | -12/+2 |
| | | | | | These two are doing the same currently. | ||||
| * | Fold: update docs | Santos Gallegos | 2020-09-08 | 2 | -2/+7 |
| | | | | | Document foldnestmax. | ||||
| * | fix using highlight query extension for every query type | kyazdani42 | 2020-09-07 | 2 | -13/+7 |
| | | |||||
| * | Incremental selection: fix skipping some nodes | Santos Gallegos | 2020-09-07 | 1 | -25/+28 |
| | | | | | | | | | | | | | | 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 | ||||
| * | Fold: respect max_fold_level from 'foldnestmax' | Santos Gallegos | 2020-09-07 | 1 | -4/+11 |
| | | |||||
| * | go locals: remove unused strip! directive | Stephan Seitz | 2020-09-07 | 1 | -2/+0 |
| | | |||||
| * | rst: remove unused captures | Santos Gallegos | 2020-09-06 | 1 | -6/+0 |
| | | | | | This is causing an error. | ||||
| * | fix: ocaml highlight | Pau Ruiz Safont | 2020-09-06 | 1 | -2/+1 |
| | | | | | | The string.special group was removed from highlight.lua, replace its uses by the string group. | ||||
| * | fix: contional > conditional in lua hl.scm | kyazdani42 | 2020-09-06 | 1 | -1/+1 |
| | | |||||
| * | fix bash highlight | kyazdani42 | 2020-09-06 | 1 | -1/+1 |
| | | |||||
| * | Lua: update highlights | Santos Gallegos | 2020-09-06 | 1 | -1/+7 |
| | | |||||
| * | Lua: fix loop and conditional keywords highlights | Santos Gallegos | 2020-09-06 | 1 | -13/+31 |
| | | |||||
| * | feat(folds): add ts and js folds | Steven Sojka | 2020-09-06 | 2 | -0/+20 |
| | | |||||
| * | change @meta to @type for derive directives because @meta is not defined | kiyan42 | 2020-09-06 | 1 | -2/+2 |
| | | |||||
| * | fix(highlights): fix ts parameter highlights | Steven Sojka | 2020-09-06 | 1 | -2/+2 |
| | | |||||
| * | Highlights: default TSError to Normal | Santos Gallegos | 2020-09-06 | 3 | -13/+1 |
| | | | | | | This provides a better experience for users without any extra config. | ||||
| * | Text objects: check for query files first | Santos Gallegos | 2020-09-06 | 1 | -1/+1 |
| | | | | | The first function is faster and more common. | ||||
| * | Fixed table insertion | Rasmus Michelsen | 2020-09-06 | 1 | -1/+1 |
| | | |||||
| * | Fixed win32 check hopefully | Rasmus Michelsen | 2020-09-06 | 1 | -6/+6 |
| | | |||||
| * | Added changes | Rasmus Michelsen | 2020-09-06 | 1 | -22/+12 |
| | | |||||
| * | A few fixes | Rasmus Michelsen | 2020-09-06 | 1 | -2/+1 |
| | | |||||
| * | Local variable fix | Rasmus Michelsen | 2020-09-06 | 1 | -1/+1 |
| | | |||||
| * | Support TSInstall on Winddows with Clang | Rasmus Michelsen | 2020-09-06 | 1 | -42/+106 |
| | | |||||
| * | Highlights: use underlined for TSURI | Santos Gallegos | 2020-09-06 | 1 | -1/+1 |
| | | | | | | Neovim already uses this hl group `:h group-name` and it's recommend for links. | ||||
| * | Completion: use custom instead of customlist | Santos Gallegos | 2020-09-05 | 4 | -12/+12 |
| | | | | | Fixes https://github.com/nvim-treesitter/nvim-treesitter/issues/396 | ||||
| * | fix ts_available_modules should be using nvim_treesitter#available_modules | kiyan42 | 2020-09-05 | 1 | -2/+2 |
| | | |||||
| * | Fix filename | Pieter Goetschalckx | 2020-09-05 | 1 | -0/+0 |
| | | |||||
| * | Query: update highlights | Santos Gallegos | 2020-09-04 | 1 | -0/+11 |
| | | | | | More color! | ||||
| * | Refactor: move completion functions to autoload | Santos Gallegos | 2020-09-04 | 5 | -35/+36 |
| | | |||||
| * | Merge pull request #385 from stsewd/query-locals | Steven Sojka | 2020-09-04 | 1 | -2/+3 |
| |\ | | | | | Query: add program as scope | ||||
| | * | Query: add program as scope | Santos Gallegos | 2020-09-04 | 1 | -2/+3 |
| |/ | |||||
| * | Python: update folds | Santos Gallegos | 2020-09-03 | 1 | -0/+1 |
| | | | | | Missed one | ||||
| * | preds: declare set! predicate | Thomas Vigouroux | 2020-09-03 | 1 | -0/+3 |
| | | |||||
| * | Python: add folds | Santos Gallegos | 2020-09-03 | 1 | -0/+24 |
| | | |||||
| * | Add warning about required Neovim version | Stephan Seitz | 2020-09-03 | 1 | -0/+6 |
| | | |||||
| * | Change 'install' -> 'index' | Constantine Theocharis | 2020-09-02 | 1 | -1/+1 |
| | | |||||
| * | Modify description slightly and place modeline at the end | Constantine Theocharis | 2020-09-02 | 1 | -3/+4 |
| | | |||||
| * | Add section 'Performance' to docs | Constantine Theocharis | 2020-09-02 | 1 | -0/+7 |
| | | |||||
| * | fix(locals): js add arrow function parameter as definition | Steven Sojka | 2020-09-02 | 1 | -0/+4 |
| | | |||||
| * | add scanner file for fennel parser | TravonteD | 2020-09-02 | 1 | -1/+1 |
| | | |||||
