Closed
Conversation
Member
|
@Chunjee Could you please explain what issue you are trying to fix and how your fix works? |
Author
Member
|
I see, in that case, your fix is not correct. Try this example. I have a question: are labels line-based? So can there be any no-space, no-comments after the label on the same line? If they are, then your problem can be fixed like this: @@ -11,8 +11,13 @@ Prism.languages.autohotkey = {
}
],
+ 'tag': {
+ // labels
+ pattern: /^([ \t]*)[^\s,`":]+(?=:[ \t]*$)/m,
+ lookbehind: true
+ },
'string': /"(?:[^"\n\r]|"")*"/m,
- 'tag': /^[ \t]*[^\s:]+?(?=:(?:[^:]|$))/m, //labels
'variable': /%\w+%/,
'number': /\b0x[\dA-Fa-f]+\b|(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:[Ee]-?\d+)?/, |
Author
|
I am afraid that comments are allowed after a label; and in some unique circumstances, before. After: validLabel: ; a commentBefore: /* multiline comment
*/ validLabel: |
Member
Perfect. In that case, you can use the code I commented above. |
Author
Member
Author
|
Thank you, after some more experimentation I think the issue was a duplicate string definition. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.




No description provided.