aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Merge pull request #89 from kyazdani42/refacto/remove-buf-state-and-apiThomas Vigouroux2020-06-1912-283/+134
|\ \ \ | |/ / |/| | refacto: remove buf state and api
| * | add winnr to get_node_at_cursorkiyan422020-06-193-4/+5
| | |
| * | update docskiyan422020-06-193-50/+33
| | |
| * | refacto: remove buf_statekiyan422020-06-199-233/+100
|/ / | | | | | | | | | | - remove buf_state and related code - add get_node_at_cursor() - better incremental selection (code is localized)
* | Merge pull request #88 from PitcherTear22/masterThomas Vigouroux2020-06-172-0/+4
|\ \ | | | | | | Give credits for java queries
| * | Give creditsChinmay Dalal2020-06-171-0/+2
| | |
| * | Give creditsChinmay Dalal2020-06-171-0/+2
| | |
* | | Merge pull request #87 from steelsojka/fix/js-boolean-fixKiyan Yazdani2020-06-151-2/+2
|\ \ \ | | | | | | | | fix(javascript): set booleans to boolean highlights
| * | | fix(javascript): set booleans to boolean highlightsSteven Sojka2020-06-151-2/+2
| | | |
* | | | Merge pull request #86 from steelsojka/feat/jsonKiyan Yazdani2020-06-152-1/+14
|\ \ \ \ | | | | | | | | | | feat(lang): add json highlights
| * | | | feat(lang): add json highlightsSteven Sojka2020-06-152-1/+14
| |/ / /
* | | | Merge pull request #85 from PitcherTear22/masterThomas Vigouroux2020-06-153-1/+181
|\ \ \ \ | |/ / / |/| / / | |/ / Add java support
| * | Fix typesChinmay Dalal2020-06-151-3/+3
| | |
| * | Add java to supported languagesChinmay Dalal2020-06-151-1/+1
| | |
| * | Add operatorsChinmay2020-06-151-1/+27
| | |
| * | Fix method highlightingChinmay2020-06-151-2/+2
| | |
| * | Add highlights.scm and locals.scmChinmay2020-06-112-0/+154
| | |
* | | Merge pull request #79 from steelsojka/feat/typescript-queriesKiyan Yazdani2020-06-155-2/+256
|\ \ \ | | | | | | | | feat(queries): add typescript and javascript queries
| * | | chore(queries): use inherited queries for ts/jsSteven Sojka2020-06-152-223/+0
| | | |
| * | | Merge branch 'master' into feat/typescript-queriesSteven Sojka2020-06-1511-11/+330
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: Change regexes in C/C++ highlights Update C/C++ highlights to new query syntax Add better highlighting for preprocessor functions in C highlights Add operators /=,*=,|=,&= to C highlights Add compound_statement to c queries Add punctuation.bracket/punctuation.delimiter to C highlights Make =,~,! operators in C highlights Add cpp/locals.scm Add @error highlight to c/highlights.scm Add C++ highlights.scm Introduce base languages for queries Add tree-sitter-regex feat(queries): allow for user overrides Update issue templates
| * | | | feat(queries): add typescript and javascript queriesSteven Sojka2020-06-145-2/+479
| | | | |
* | | | | Merge pull request #83 from theHamsta/fixup-cpp-localsThomas Vigouroux2020-06-151-1/+1
|\ \ \ \ \ | |_|/ / / |/| | | | Fixup: Introduce base languages for queries
| * | | | Fixup: Introduce base languages for queriesStephan Seitz2020-06-151-1/+1
|/ / / / | | | | | | | | | | | | Use same argument for nvim_get_runtime_file for base language
* | | | Merge pull request #63 from theHamsta/cpp-localsKiyan Yazdani2020-06-156-8/+210
|\ \ \ \ | | | | | | | | | | Introduce base languages for queries (for C++ locals)
| * | | | Change regexes in C/C++ highlightsStephan Seitz2020-06-152-2/+2
| | | | |
| * | | | Update C/C++ highlights to new query syntaxStephan Seitz2020-06-154-16/+17
| | | | |
| * | | | Add better highlighting for preprocessor functions in C highlightsStephan Seitz2020-06-151-0/+5
| | | | |
| * | | | Add operators /=,*=,|=,&= to C highlightsStephan Seitz2020-06-151-2/+7
| | | | |
| * | | | Add compound_statement to c queriesStephan Seitz2020-06-151-0/+1
| | | | |
| * | | | Add punctuation.bracket/punctuation.delimiter to C highlightsStephan Seitz2020-06-151-2/+11
| | | | |
| * | | | Make =,~,! operators in C highlightsStephan Seitz2020-06-152-5/+10
| | | | |
| * | | | Add cpp/locals.scmStephan Seitz2020-06-152-3/+57
| | | | |
| * | | | Add @error highlight to c/highlights.scmStephan Seitz2020-06-151-0/+2
| | | | |
| * | | | Add C++ highlights.scmStephan Seitz2020-06-153-1/+101
| | | | |
| * | | | Introduce base languages for queriesStephan Seitz2020-06-151-1/+21
|/ / / / | | | | | | | | | | | | | | | | | | | | Some treesitter grammars just extend another treesitter grammar. This enables us to use the C queries also for C++. We only need to put additional queries in the C++ files.
* | | | Merge pull request #80 from steelsojka/feat/user-query-overridesKiyan Yazdani2020-06-152-4/+18
|\ \ \ \ | | | | | | | | | | feat(queries): allow user query overrides
| * | | | feat(queries): allow for user overridesSteven Sojka2020-06-142-4/+18
| |/ / /
* | | | Merge pull request #70 from theHamsta/regexThomas Vigouroux2020-06-143-0/+37
|\ \ \ \ | | | | | | | | | | Add tree-sitter-regex
| * | | | Add tree-sitter-regexStephan Seitz2020-06-143-0/+37
|/ / / / | | | | | | | | | | | | This might be interesting for injected highlighting
* / / / Update issue templatesThomas Vigouroux2020-06-143-0/+66
|/ / / | | | | | | Add some issue templates
* | | Merge pull request #77 from TravonteD/76-syntax-updateThomas Vigouroux2020-06-122-8/+9
|\ \ \ | |/ / |/| | - #76 update the predicate syntax for ruby and css
| * | - #76 update the predicate syntax for ruby and cssTravonteD2020-06-112-8/+9
|/ /
* | Merge pull request #69 from theHamsta/go-highlightsThomas Vigouroux2020-06-074-1/+204
|\ \ | | | | | | Go highlights
| * | Update CONTRIBUTING.md for @docStephan Seitz2020-06-071-0/+7
| | |
| * | Add call references for GoStephan Seitz2020-06-071-0/+17
| | |
| * | Add go locals.scmStephan Seitz2020-06-071-0/+43
| | |
| * | Add highlights.scm for GoStephan Seitz2020-06-072-1/+137
| | |
* | | Merge pull request #75 from theHamsta/html-quoted_attribute_valueKiyan Yazdani2020-06-051-0/+1
|\ \ \ | |_|/ |/| | html: Highlight (quoted_attribute_value) as @string
| * | html: Highlight (quoted_attribute_value) as @stringStephan Seitz2020-06-051-0/+1
|/ /
* | Merge pull request #68 from TravonteD/htmlThomas Vigouroux2020-06-022-1/+15
|\ \ | | | | | | Add html highlight queries