Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
Scope < and > in c and c++
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben3eeE committed Nov 1, 2018
1 parent e28c086 commit 100dd66
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions grammars/tree-sitter-c.cson
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ scopes:
'"!"': 'keyword.operator'
'"!="': 'keyword.operator'
'"<"': 'keyword.operator'
'">"': 'keyword.operator'
'">="': 'keyword.operator'
'"<="': 'keyword.operator'
'"&&"': 'keyword.operator'
Expand Down
3 changes: 2 additions & 1 deletion grammars/tree-sitter-cpp.cson
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ scopes:
'"=="': 'keyword.operator'
'"!"': 'keyword.operator'
'"!="': 'keyword.operator'
'"<"': 'keyword.operator'
'relational_expression > "<"': 'keyword.operator'
'relational_expression > ">"': 'keyword.operator'
'">="': 'keyword.operator'
'"<="': 'keyword.operator'
'"&&"': 'keyword.operator'
Expand Down

0 comments on commit 100dd66

Please sign in to comment.