Re: AutoIT - highlighting non-comment as a comment
Posted: 02.08.2025 14:07
I can't seem to find a complete keyword reference in the manuals. I did find a list of keywords, but it isn't just those starting with a # at the start of a script, this list is a complete list of every type of keyword. so not sure it will be of use?
The ones that I know about are these:
The manual states this is a complete list, so I have to accept that this must be all there is.
There are also these for comments, but the point is to separate comments from preprocessors:
The ones that I know about are these:
Code: Select all
#RequireAdmin
#NoTrayIcon
#SingleInstance Force ; this has other parameters but I can't find what they are at the moment.
#include <MsgBoxConstants.au3>
#include-once
#OnAutoItStartRegister
#pragma
There are also these for comments, but the point is to separate comments from preprocessors:
Code: Select all
#comments-start
#comments-end
#cs
#ce