Page 1 of 1

How to launch ahk in Everedit

Posted: 26 Nov 2014, 23:53
by tripshack
I use Everedit for AHK. http://www.everedit.net/index.php
It's prepackaged with AHK syntax highlighting.
After the 1 month trial, it's currently $35 usd.

My #includes were not working properly, so I came here to ask about it. Before posting, I solved the issue by correcting my Everedit config.

Here's how to configure Everedit to launch your script:

Create "AHK Launch" shortcut
Tools -> external tools -> Add ->
Title: AHK Launch
Command: "C:\Program Files (x86)\AutoHotkey\AutoHotkey.exe"
Arguments: "$(FilePath)"
Initial Directory: $(FileDir)
Arguments: Requires quotes for paths with spaces.
Initial Directory: Does not work with quotes.
Setup shortcut key to launch
Tools -> Settings -> Shortcuts -> type ahk -> AHK Launch ->
Enter your preferred shortcut key (F5 is what I use...)
Click Assign
Done.

Re: How to launch ahk in Everedit

Posted: 27 Nov 2014, 13:13
by tidbit
Hello, fellow EverEdit user!
I use it too, quite a nice editor (that costs $$)

Though, your process can be simplified to make it run (almost) any type of file:
(handy for HTML or other file types)
http://imgur.com/1JUIb6M
Image

Re: How to launch ahk in Everedit

Posted: 12 Dec 2014, 23:53
by tripshack
Nice ;)