highlights(elvish): Use @function.builtin for operator-like functions

Elvish uses prefix notation even for mathematical operators (i.e. `<= 1 2 3 4`),  so these should be considered functions.
This commit is contained in:
Tobias Frilling 2022-09-12 19:36:10 +02:00 committed by Christian Clason
parent 17563f4699
commit b92535f045

View file

@ -24,7 +24,7 @@
[
"+" "-" "*" "/" "%" "<" "<=""==" "!=" ">"
">=" "<s" "<=s" "==s" "!=s" ">s" ">=s"
] @operator
] @function.builtin
[">" "<" ">>" "<>" "|"] @operator