1
0
Fork 0
mirror of https://github.com/Reuh/anselme.git synced 2025-10-29 01:29:31 +00:00

Aliases: add wrap > operator

This commit is contained in:
Étienne Fildadut 2023-12-30 23:43:53 +01:00
parent 2cd910389b
commit b7761311fe
10 changed files with 34 additions and 25 deletions

View file

@ -30,6 +30,7 @@ local common = {
-- list of operators and their priority that are handled through regular function calls & can be overloaded/etc. by the user
regular_operators = {
prefixes = {
{ ">", 3.1 }, -- just above _=_
{ "~", 3.5 }, -- just below _~_ so else-if (~ condition ~ expression) parses as (~ (condition ~ expression))
{ "!", 11 },
{ "-", 11 },