> by just having a look at the parser (and not knowing the language), it seems > that the parser supports scopes (i.e. nesting one tag inside other tag). > ... > it seems that you can nest one function inside another
It seems the language does not support such constructs. Any part of code can be placed inside the `#Region ... #EndRegion`, but `#Region ... #EndRegion` is not a regular operator, macro or directive and does not participate in code execution in any way: this is just a visual cue (for the authors, not for the AutoIt), which allows to fold pieces of code. Usually these are some logically related parts of the script - group of functions and/or variables and so on. I'm not sure if I managed to explain correctly, I'm one of those who just use it :) > Second, very minor thing is that in https://github.com/geany/geany/pull/3428 > we changed comments for wordchars and comment_use_indent in the filetype > config files Fixed. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/1752#issuecomment-1485124807 You are receiving this because you are subscribed to this thread. Message ID: <geany/geany/pull/1752/[email protected]>
