language-autohotkey icon indicating copy to clipboard operation
language-autohotkey copied to clipboard

Function Color Problem

Open burakyak opened this issue 4 years ago • 2 comments

Predefined parameters breaks the color of the function. I guess, any punctuation breaks it actually.

exampleFunction(parameterA=8)
{
    msgBox % parameterA "This function name has no color."
}

Thanks in advance.

burakyak avatar Dec 12 '20 13:12 burakyak

go to grammar folder>autohotkey.cson>line 79 i have this in my version: match: "(\\w+)([(])([\\w\\s\",]*)([)])" you want to leave it like this: match: "(\\w+)([(])([\\w\\s\\+\\*\",.:=-]*)([)])" is just a quick fix

adrian88888888 avatar Feb 26 '21 19:02 adrian88888888

go to grammar folder>autohotkey.cson>line 79 i have this in my version: match: "(\\w+)([(])([\\w\\s\",]*)([)])" you want to leave it like this: match: "(\\w+)([(])([\\w\\s\\+\\*\",.:=-]*)([)])" is just a quick fix

That fixed the issue. Thank you sir. 😊

burakyak avatar Mar 05 '21 10:03 burakyak