aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* fix ask installkiyan422020-06-301-8/+8
|
* Define multiple query for a languagekiyan422020-06-301-0/+19
| | | | | Allows using another query file for a language, or use a query file from another language
* if/else in defining languageskiyan422020-06-301-2/+5
|
* fix: remove goto statementskiyan422020-06-301-21/+24
|
* update installer with sync and some fixeskiyan422020-06-303-65/+92
| | | | | | - add sync method for installing using `system` - remove `descriptions` in command configs - use install(lang) in ensure_installed and make it compatible
* Java highlights: Add operators ":" "?"Stephan Seitz2020-06-301-0/+2
|
* Java highlights: Add parameter highlight for single-parameter lambdasStephan Seitz2020-06-301-1/+4
|
* refactor(refactor): use higher local apis and some cleanupSteven Sojka2020-06-3010-69/+103
|
* feat(refactor): add definition navigation moduleSteven Sojka2020-06-303-7/+123
|
* feat(refactor): add smart rename moduleSteven Sojka2020-06-305-24/+115
|
* feat(refactor): highlight usages moduleSteven Sojka2020-06-308-36/+274
|
* add python asynckiyan422020-06-301-0/+1
|
* Add method reference operatorChinmay Dalal2020-06-291-0/+1
|
* add used_by key to parserskiyan422020-06-293-17/+35
| | | | Enables the use of multiple filetypes for one parser.
* Extend documentation for TSErrorStephan Seitz2020-06-291-1/+7
|
* highlights: declare links as defaultsThomas Vigouroux2020-06-291-33/+33
|
* Java highlights: Capture parameters in declaration (#93)Chinmay Dalal2020-06-291-31/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Capture parameters in declaration * Refactor (new syntax) * Fix spaces * Fix capture (java method parameters) * Improve java parameter capture * Fix bracket and whitespace * Fix java query * Fix java query Co-authored-by: Thomas Vigouroux <39092278+vigoux@users.noreply.github.com> * Add capture for lambda parameters, remove redundant captures, add -> operator * Previous commit wasn't saved properly * Fix formatting * Changes suggested in PR https://github.com/nvim-treesitter/nvim-treesitter/pull/93#pullrequestreview-435630553 * Add bitwise operators * Re-add builtin operators * remove left shift, add ^= * Add &= and |= * remove @variable * Remove duplicate Co-authored-by: Thomas Vigouroux <39092278+vigoux@users.noreply.github.com>
* C highlights: Add highlight for #elifStephan Seitz2020-06-281-7/+10
|
* Fix typo in documentation: `labe:` -> `label:`Stephan Seitz2020-06-281-1/+1
|
* Merge pull request #102 from vigoux/fix-94Stephan Seitz2020-06-271-2/+2
|\ | | | | Separate queries with newlines
| * fix: separate queries with newlinesThomas Vigouroux2020-06-211-2/+2
| |
* | Merge pull request #115 from kyazdani42/doc/update-install-docStephan Seitz2020-06-272-3/+4
|\ \ | | | | | | update docs for TSInstall
| * | update docs for TSInstallkiyan422020-06-272-3/+4
|/ /
* | highlight: use custom highlight groupsThomas Vigouroux2020-06-264-33/+235
| |
* | Fix cpp-highlights: wrong capture name used in regexStephan Seitz2020-06-261-3/+2
| |
* | Python highlights: Reset highlighting in f-string interpolationStephan Seitz2020-06-261-2/+3
| | | | | | | | | | This solution is preferable to `(identifier) @Normal` since otherwise everything without highlight will use string-highlighting.
* | Python highlights: Add walrus operatorStephan Seitz2020-06-261-0/+1
| |
* | continue installing if not reinstalling one parserkiyan422020-06-251-1/+2
| |
* | install can take 'all' as parameterkiyan422020-06-251-12/+14
| |
* | add command to install all parserskiyan422020-06-251-0/+7
| |
* | fix(locals): compute locals after later tickSteven Sojka2020-06-241-1/+1
| |
* | Adapt Python highlights to new query syntaxStephan Seitz2020-06-242-81/+66
| |
* | add highlight queries for bashTravonteD2020-06-232-1/+111
| |
* | Update CONTRIBUTING.mdThomas Vigouroux2020-06-231-49/+59
| | | | | | This makes it more readable
* | Fix the ":" in symbols when used in pairsTravonteD2020-06-231-0/+1
| | | | | | | | | | | | | | This fixes the colon not being highlighted when a symbol is represented in a pair like so: symbol: true
* | rename and finish ft->lang migrationkiyan422020-06-224-36/+36
| |
* | Merge pull request #98 from theHamsta/disclaimerKiyan Yazdani2020-06-211-0/+3
|\ \ | | | | | | WIP: Add disclaimer to README.md
| * | Add disclaimer to README.mdStephan Seitz2020-06-211-0/+3
| | |
* | | Merge pull request #101 from stsewd/fix-parser-ulrKiyan Yazdani2020-06-211-1/+1
|\ \ \ | |_|/ |/| | Fix bash parser url
| * | Fix bash parser urlSantos Gallegos2020-06-211-1/+1
|/ / | | | | | | Not sure if this was on purpose or if it was a mistake
* | fix(statusline): don't call if no parserThomas Vigouroux2020-06-211-0/+1
| |
* | Merge pull request #96 from theHamsta/python-__dunder__Thomas Vigouroux2020-06-211-0/+3
|\ \ | |/ |/| Add highlighting of dunder identifiers (e.g. __all__, __add__) to Python highlights
| * Add highlighting of dunder identifiers (e.g. __all__, __add__) to Python ↵Stephan Seitz2020-06-211-0/+3
| | | | | | | | highlights
* | Merge pull request #90 from kyazdani42/fix/parser-names-as-filetypesKiyan Yazdani2020-06-219-277/+311
|\ \ | |/ |/| refacto/fix: filetype / parser name distinction
| * refactor: parser list and lang->ft/ft->langkiyan422020-06-209-277/+311
| | | | | | | | | | | | | | - move parser list in `parsers.lua` - most `ft` variable where changed to `lang`, `ft` is only used on autocmd binding, and lang is used for everything else. Functions have been defined to make the switch between `ft` and `lang`
| * fix: declare parse names as their appropriate filetype and change clone urlkiyan422020-06-191-6/+6
| |
* | Merge pull request #72 from doubleloop/pythonStephan Seitz2020-06-212-45/+32
|\ \ | | | | | | Updated python highlights
| * | Updated python highlightsJakub Łuczyński2020-06-212-45/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | | * allow for digits in constant names * removed redundant/conflicting rules * added missing hlmap * fixed escape_sequence * more explicit @constructor assignment * added rules for function decoration identifiers
* | | Merge pull request #91 from TravonteD/sibling-refactorThomas Vigouroux2020-06-215-135/+197
|\ \ \ | |_|/ |/| | Refactor: utilize new consolidated syntax
| * | refactor: use newly introduced consolidated syntaxTravonteD2020-06-205-135/+197
| | |