Merge pull request #266 from msfjarvis/comment-fix

Enforce leading space for comments in all languages
This commit is contained in:
Anthony Scopatz 2019-12-02 10:14:01 -05:00 committed by GitHub
commit 469f9e6fd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 13 additions and 13 deletions

View File

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

View File

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

View File

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

View File

@ -7,7 +7,7 @@ color cyan "\<(abstract|class|extends|final|implements|import|instanceof|interfa
color red ""[^"]*""
color yellow "\<(true|false|null)\>"
icolor yellow "\b(([1-9][0-9]+)|0+)\.[0-9]+\b" "\b[1-9][0-9]*\b" "\b0[0-7]*\b" "\b0x[1-9a-f][0-9a-f]*\b"
color blue " //.*"
color blue "^\s*//.*"
color blue start="/\*" end="\*/"
color brightblue start="/\*\*" end="\*/"
color ,green "[[:space:]]+$"

View File

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

View File

@ -19,7 +19,7 @@ color brightred "\<(inner|outer)\>"
color brightblue "<[^= ]*>" ""(\\.|[^"])*""
## Comment highlighting
color red "//.*"
color red "^\s*//.*"
color red start="/\*" end="\*/"
## Trailing whitespace

View File

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

View File

@ -26,7 +26,7 @@ color green start="\".*\\$" end=".*\""
color green start="r#+\"" end="\"#+"
# Comments
color blue "//.*"
color blue "^\s*//.*"
color blue start="/\*" end="\*/"
# 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 red ""[^"]*""
color yellow "\<(true|false|null)\>"
color blue "//.*"
color blue "^\s*//.*"
color blue start="/\*" end="\*/"
color brightblue start="/\*\*" end="\*/"
color ,green "[[:space:]]+$"

View File

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

View File

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

View File

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