Search found 50 matches

by ANewUser
11.03.2020 15:41
Forum: Lexers
Topic: C#, Inno Script, Autohotkey lexers
Replies: 45
Views: 50663

Thank you!
The code tree is meant for listing declarations only or for listing every occurence/usage?
by ANewUser
11.03.2020 14:52
Forum: Lexers
Topic: C#, Inno Script, Autohotkey lexers
Replies: 45
Views: 50663

for AHK lexer: The function names must be followed immediately with (. So ex. the "if (true)" is not a function call. https://i.imgur.com/dE4xPVX.png ; missing the "#include" directive #include abcfile.ahk ; multi line string ; the opening ( can follow some options, so it has not...
by ANewUser
11.03.2020 12:12
Forum: Lexers
Topic: C#, Inno Script, Autohotkey lexers
Replies: 45
Views: 50663

Sorry somehow I have not noticed the previous 2 posts!
I will examine the new things in the version 6.0.
As for the {...}, if it is not working reliable then remove it.

By the way the string type is not highlighted as other types. Maybe it is in a wrong group.
by ANewUser
11.03.2020 11:58
Forum: Lexers
Topic: Powershell lexer
Replies: 27
Views: 11763

Video about basic usage or something else?
by ANewUser
11.03.2020 11:57
Forum: Lexers
Topic: Python lexer
Replies: 3
Views: 1593

End of string glitch: "x = r'xyz\\' # this is a comment !!!"
https://i.imgur.com/xTwHDKb.png
by ANewUser
10.03.2020 18:01
Forum: Lexers
Topic: Powershell lexer
Replies: 27
Views: 11763

Thanks, it works fine, but you probably overlooked the mentioned "...[]" array types.
https://i.imgur.com/TMUzIZR.png
Sorry if it was not unambiguous.
by ANewUser
09.03.2020 11:01
Forum: Lexers
Topic: Powershell lexer
Replies: 27
Views: 11763

There are some problems regarding the types. Highlight the types only in [...] (dot separated identifiers or just an identifier)! The type-name can be followed by "[]" like "[byte[]]" (it is an byte array type). # the built-in type accelerators (the 3rd column contains the full t...
by ANewUser
04.03.2020 17:21
Forum: Lexers
Topic: Python lexer
Replies: 3
Views: 1593

Python lexer

Hello! Some missing things. There are symbols that are already detected but maybe in wrong style. https://i.imgur.com/B0Lu4Su.png # string prefix r/R r'str txt' u'str txt' b'str txt' # the imaginary number suffix 0j 4.3J # Python 2.x long integer suffix 34664L 1111l # builtins # functions __import__...
by ANewUser
03.03.2020 20:25
Forum: Lexers
Topic: C#, Inno Script, Autohotkey lexers
Replies: 45
Views: 50663

Thank you!
by ANewUser
03.03.2020 15:17
Forum: Lexers
Topic: C#, Inno Script, Autohotkey lexers
Replies: 45
Views: 50663

Inno Setup Script (Pascal Script):
(maybe the types in different style not as the keywords ...)
Missing types: cardinal, integer, boolean, pchar, char, single, extended, int64
Missing keywords: result, exit, break, true, false, external
(edited break added)
Thanks!