Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the best editor for AutoHotkey? [closed]

What is the best editor for Autohotkey with regards to syntax hightlighting, command completion (intellisense), testing etc.

I am doing a bit of Autohotkey programming, and being spoiled rotten by Visual Studio, I really miss these features - especially being new to the language/framework.

like image 399
Kjensen Avatar asked Aug 06 '09 13:08

Kjensen


People also ask

How do I close an AutoHotkey script?

You can use a suspend AutoHotkey function, just press [ESC] and the script stop working, press again and it works.

What file type does AutoHotkey use?

An AHK file is a script created with AutoHotkey, a program used to automate tasks in Windows. It is saved as a plain text file and contains lines of code that can be executed by AutoHotkey (AutoHotkey.exe).

Is there a portable version of AutoHotkey?

Built option to add "AHK Portable Installer" path to PATH environment variable. The "Install For" option affects adding to the user PATH or system PATH. Built option to copy installed EXE to "AHK Portable Installer" dir as "AutoHotkey.exe".


2 Answers

The best editor to get started with would be SciTE4AutoHotkey

http://fincs.ahk4.net/scite4ahk/ enter image description here

SciTE4AutoHotkey is a lightweight and easy to use SciTE-based AutoHotkey script editor. It provides:

Syntax highlighting Calltips (also known as IntelliSense) AutoComplete AutoIndent AutoHotkey help integration Abbreviations Editing macros Interactive debugging Tools for AutoHotkey scripting Powerful extension mechanisms 

To search for different types of scripts that you could use...

Go to the Sticky: Catalogue of scripts and Rosetta Code challenges at the Scripts & Functions section of the AutoHotkey forum.

like image 81
Zenjin Avatar answered Oct 02 '22 17:10

Zenjin


I have just discovered that the free editor Notepad++ has an AutoIt syntax highlighting mode that seems to support AutoHotKey syntax.

To use it, I just opened my .ahk file in Notepad++, then selected Language->A->AutoIt.

like image 44
Clare Macrae Avatar answered Oct 02 '22 15:10

Clare Macrae