Skip to content

Commit

Permalink
added support for ligatures
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigoddalmeida authored and keathley committed Jan 18, 2016
1 parent f5a6fcd commit cb1b3ad
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions grammars/elixir.cson
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,11 @@
}
]
}
{
'comment': 'matches: | ++ -- ** \\ <- <> << >> :: .. |> ~ => ->'
'match': '\\+\\+|\\-\\-|\\*\\*|\\\\\\\\|\\<\\-|\\<\\>|\\<\\<|\\>\\>|\\:\\:|\\.\\.|\\|>|~|=>|->|\\|'
'name': 'keyword.operator.other.elixir'
}
{
'match': '\\+=|\\-=|\\|\\|=|~=|&&='
'name': 'keyword.operator.assignment.augmented.elixir'
Expand All @@ -522,10 +527,6 @@
'match': '(\\*|\\+|\\-|/)'
'name': 'keyword.operator.arithmetic.elixir'
}
{
'match': '\\||\\+\\+|\\-\\-|\\*\\*|\\\\\\\\|\\<\\-|\\<\\>|\\<\\<|\\>\\>|\\:\\:|\\.\\.|\\|>|~|=>'
'name': 'keyword.operator.other.elixir'
}
{
'match': '='
'name': 'keyword.operator.assignment.elixir'
Expand Down

0 comments on commit cb1b3ad

Please sign in to comment.