aboutsummaryrefslogtreecommitdiffstats
path: root/queries/c
Commit message (Collapse)AuthorAgeFilesLines
...
* feat: added more indent querieselianiva2021-01-141-0/+16
|
* fix(c highlights): add missing operatorsThomas Vigouroux2021-01-061-0/+2
|
* Remove usages of `@embedded` in highlightsStephan Seitz2021-01-061-1/+0
|
* Fix #724: Add (initializer_list) to C foldsStephan Seitz2020-11-301-0/+2
|
* c highlights: fix define/undef argumentsThomas Vigouroux2020-11-221-0/+9
|
* c/cpp highlights: Fix field declarations and initializersJohn Drouhard2020-11-201-0/+5
| | | | | | | After a recent fix for #446, declarations in class/struct definitions stopped being marked as properties or methods. This fix will add property highlights to field declarations, and method highlight to field function declarations.
* Do not highlight Uppercase function as typeStephan Seitz2020-11-181-1/+1
|
* fix(predicates): Fix #446: highlight property only if not a methodStephan Seitz2020-11-181-1/+3
|
* Remove textobjects moduleStephan Seitz2020-10-041-58/+0
|
* Fix #307: Use and document TSVariable/TSVariableBuiltin in all languagesStephan Seitz2020-09-141-0/+2
|
* Folds: rename query files to folds.scm to be consistentSantos Gallegos2020-09-141-0/+0
| | | | We use plural names for all query files except folds.
* fix(cpp highlights): Use `@include` for preproc_include (fix #445)Stephan Seitz2020-09-131-1/+2
|
* C/C++ locals: Deduplicate C++ locals contained in CStephan Seitz2020-09-081-0/+1
|
* Add C++ folds and C comment/preproc foldsStephan Seitz2020-09-081-0/+6
|
* fold(c): ignore compound statementsThomas Vigouroux2020-09-011-1/+0
|
* fix(fold): revamp foldThomas Vigouroux2020-09-011-0/+8
| | | | | | | | fix(fold): typo fix(fold): remove debug and add queries fix(fold): fallback to local scopes for folds
* C highlights: make `preproc_defined` @function.macroStephan Seitz2020-08-301-1/+4
|
* C highlights: add bitwise-xor operatorStephan Seitz2020-08-271-0/+2
|
* feat(c/cpp highlights): highlight pointer/reference parametersStephan Seitz2020-08-241-0/+3
|
* chore(highlights): remove is predicate usageSteven Sojka2020-08-171-2/+0
|
* Textobjects: add swap featureStephan Seitz2020-08-171-0/+3
|
* feat(highlights): add is predicateSteven Sojka2020-08-162-4/+6
|
* C/C++ locals: Make `field_identifier` a referenceStephan Seitz2020-07-271-0/+2
|
* C highlights: Add operator "%"Stephan Seitz2020-07-201-0/+2
|
* Attach kind of reference to query result instead of using subfieldsStephan Seitz2020-07-201-1/+2
| | | | | This makes smart_rename work also for types out of the box and we don't need to search for the path of actual node.
* highlights: some fixesThomas Vigouroux2020-07-161-0/+1
| | | | | Add `goto` keyword for C. Fix typo for lua.
* Add C/C++ textobjectsStephan Seitz2020-07-141-0/+47
|
* Add textobjects moduleStephan Seitz2020-07-141-0/+8
|
* Add rust locals.scmStephan Seitz2020-07-131-1/+1
|
* C/C++ highlights: Small improvements for type definitionsStephan Seitz2020-07-131-0/+3
|
* highlight(c): fix booleans and typesThomas Vigouroux2020-07-091-19/+38
|
* C/C++ highlights: update to new syntaxStephan Seitz2020-07-052-63/+68
| | | | This changed the highlight of "switch" to conditional and of "break" to repeat.
* highlights(c): highlight ternary as conditionalThomas Vigouroux2020-06-301-2/+1
|
* C highlights: Make ? an operator in c highlightsStephan Seitz2020-06-301-0/+1
|
* C highlights: Add highlight for #elifStephan Seitz2020-06-281-7/+10
|
* Change regexes in C/C++ highlightsStephan Seitz2020-06-151-1/+1
|
* Update C/C++ highlights to new query syntaxStephan Seitz2020-06-152-3/+4
|
* 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-151-0/+10
|
* Add @error highlight to c/highlights.scmStephan Seitz2020-06-151-0/+2
|
* Add C++ highlights.scmStephan Seitz2020-06-151-0/+3
|
* Some improvements to c/locals.scmStephan Seitz2020-05-231-7/+9
| | | | | | - Fix function scope (was declaration only without body) - Use @definition.var like the other local files - Add translation_unit scope
* queries: add C queriesThomas Vigouroux2020-05-162-0/+113
Also add a missing `field` capture in locals query.