Compare commits

...

2 Commits

Author SHA1 Message Date
Mal d72ac90edc JS: case and static statements added 2022-06-06 10:13:15 +02:00
Mal 4237bc545d Python: color for modules in imports added 2022-06-06 10:11:31 +02:00
2 changed files with 6 additions and 3 deletions

View File

@ -19,19 +19,19 @@ color orange "function \w+\(.*\)"
color cyan "\w+\("
# Function/method names on definitions
color green "function \w+\("
color green "(function|static) \w+\("
color green "@\w+"
color green "^[[:blank:]]+\w+\(.*(\)| \{)$"
# Parameters inside method definitions
color orange "\([a-zA-Z_0-9,= ]+\)( *\{|$)"
color orange "\([a-zA-Z_0-9,= '#]+\)( *\{|$)"
color white " \([a-zA-Z_0-9,= ]+\)( *\{|$)"
# Class initialization
color white "new \w+\("
# Statements
color brightcyan "\<(class|function|extends|import|export|default|from|new|var|let|const|return|for|while|in|of|if|elseif|else|throw|continue|break|try|catch|switch|static|typeof|do|async|await)\>"
color brightcyan "\<(class|function|extends|import|export|default|from|new|var|let|const|return|for|while|in|of|if|elseif|else|throw|continue|break|try|catch|switch|case|static|typeof|do|async|await)\>"
# Operators
color red "(=|·|\/|\+|-|\*|\!|>|<|:|\?|&|\|)"

View File

@ -24,6 +24,9 @@ color orange "def \w+\(.*\)( *-> *\w+){0,1}:"
color green "def \w+\("
color green "@\w+"
# Import modules
color magenta "(import|from) \w+"
# Statements
color brightcyan "\<(class|def|import|from|return|for|while|global|in|if|elif|else|raise|is|not|and|or|with|continue|break|try|except|finally|pass|yield)\>"