Enforce leading spaces for comments in all languages

Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
This commit is contained in:
Harsh Shandilya 2019-11-25 15:02:14 +05:30
parent 586cbc3e43
commit 8b6b6b5ad8
No known key found for this signature in database
GPG Key ID: C2E74282C2133D62
10 changed files with 11 additions and 11 deletions

View File

@ -109,7 +109,7 @@ color brightyellow "<[^= ]*>" ""(\\.|[^"])*""
color brightyellow start=""(\\.|[^"])*\\[[:space:]]*$" end="^(\\.|[^"])*"" color brightyellow start=""(\\.|[^"])*\\[[:space:]]*$" end="^(\\.|[^"])*""
## Comments ## Comments
color brightblue "//.*" color brightblue " //.*"
color brightblue start="/\*" end="\*/" color brightblue start="/\*" end="\*/"
## Trailing whitespace ## Trailing whitespace

View File

@ -11,7 +11,7 @@ color brightcyan "^[[:space:]]*#[[:space:]]*(define|undef|include|ifn?def|endif|
color brightyellow "<[^= ]*>" ""(\\.|[^"])*"" color brightyellow "<[^= ]*>" ""(\\.|[^"])*""
color brightyellow start=""(\\.|[^"])*\\[[:space:]]*$" end="^(\\.|[^"])*"" color brightyellow start=""(\\.|[^"])*\\[[:space:]]*$" end="^(\\.|[^"])*""
## Highlight comments ## Highlight comments
color brightblue "//.*" color brightblue " //.*"
color brightblue start="/\*" end="\*/" color brightblue start="/\*" end="\*/"
## Highlight trailing whitespace ## Highlight trailing whitespace
color ,green "[[:space:]]+$" color ,green "[[:space:]]+$"

View File

@ -35,7 +35,7 @@ color cyan "<[^= ]*>" ""(\\.|[^"])*""
#color cyan start=""(\\.|[^"])*\\[[:space:]]*$" end="^(\\.|[^"])*"" #color cyan start=""(\\.|[^"])*\\[[:space:]]*$" end="^(\\.|[^"])*""
## Comment highlighting ## Comment highlighting
color brightblue "//.*" color brightblue " //.*"
color brightblue start="/\*" end="\*/" color brightblue start="/\*" end="\*/"
## Trailing whitespace ## Trailing whitespace

View File

@ -49,4 +49,4 @@ color red "\\[0-7][0-7]?[0-7]?|\\x[0-9a-fA-F]+|\\[bfnrt'"\?\\]"
## Comments ## Comments
color brightblue start="/\*" end="\*/" color brightblue start="/\*" end="\*/"
color brightblue "//.*$" color brightblue " //.*$"

View File

@ -11,5 +11,5 @@ color brightred "\<(fog|object|camera)\>"
color green "(\{|\}|\(|\)|\;|\]|\[|`|\\|\$|<|>|!|=|&|\|)" color green "(\{|\}|\(|\)|\;|\]|\[|`|\\|\$|<|>|!|=|&|\|)"
color brightmagenta "\<(union|group|subgroup)\>" color brightmagenta "\<(union|group|subgroup)\>"
## Comment highlighting ## Comment highlighting
color brightblue "//.*" color brightblue " //.*"
color brightblue start="/\*" end="\*/" color brightblue start="/\*" end="\*/"

View File

@ -26,7 +26,7 @@ color green start="\".*\\$" end=".*\""
color green start="r#+\"" end="\"#+" color green start="r#+\"" end="\"#+"
# Comments # Comments
color blue "//.*" color blue " //.*"
color blue start="/\*" end="\*/" color blue start="/\*" end="\*/"
# Attributes # Attributes

View File

@ -6,7 +6,7 @@ color red "\<(match|val|var|break|case|catch|continue|default|do|else|finally|fo
color cyan "\<(def|object|case|trait|lazy|implicit|abstract|class|extends|final|implements|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile|sealed)\>" color cyan "\<(def|object|case|trait|lazy|implicit|abstract|class|extends|final|implements|import|instanceof|interface|native|package|private|protected|public|static|strictfp|super|synchronized|throws|volatile|sealed)\>"
color red ""[^"]*"" color red ""[^"]*""
color yellow "\<(true|false|null)\>" color yellow "\<(true|false|null)\>"
color blue "//.*" color blue " //.*"
color blue start="/\*" end="\*/" color blue start="/\*" end="\*/"
color brightblue start="/\*\*" end="\*/" color brightblue start="/\*\*" end="\*/"
color ,green "[[:space:]]+$" color ,green "[[:space:]]+$"

View File

@ -55,8 +55,8 @@ color red ""[^"]*""
color white start="\\\(" end="\)" color white start="\\\(" end="\)"
# Comments # Comments
color green "//.*" color green " //.*"
color brightgreen "///.*" color brightgreen " ///.*"
color green start="/\*\*" end="\*/" color green start="/\*\*" end="\*/"
color green "[/**]" color green "[/**]"

View File

@ -36,7 +36,7 @@ color red "\\[0-7][0-7]?[0-7]?|\\x[0-9a-fA-F]+|\\[bfnrt'"\?\\]"
## Comments ## Comments
color magenta start="/\*" end="\*/" color magenta start="/\*" end="\*/"
color magenta "//.*$" color magenta " //.*$"
## Trailing whitespace ## Trailing whitespace
color ,green "[[:space:]]+$" color ,green "[[:space:]]+$"

View File

@ -74,7 +74,7 @@ color brightyellow ""([^"]|\\")*"" "<[^[:blank:]=]*>"
###color brightyellow start=""(\\.|[^"])*\\[[:space:]]*$" end="^(\\.|[^"])*"" ###color brightyellow start=""(\\.|[^"])*\\[[:space:]]*$" end="^(\\.|[^"])*""
# Comments. # Comments.
color brightblue "//.*" color brightblue " //.*"
color brightblue start="/\*" end="\*/" color brightblue start="/\*" end="\*/"
# Reminders. # Reminders.