| View previous topic :: View next topic |
| What AHK editor do you use? |
| Windows notepad |
|
15% |
[ 16 ] |
| SciTE/Scintilla |
|
3% |
[ 4 ] |
| SciTE4AutoHotkey |
|
18% |
[ 19 ] |
| Notepad2 |
|
2% |
[ 3 ] |
| Notepad2 for AutoHotKey |
|
4% |
[ 5 ] |
| Notepad++ |
|
25% |
[ 26 ] |
| QuickAHK |
|
0% |
[ 0 ] |
| Crimson Editor |
|
0% |
[ 0 ] |
| PSPad |
|
20% |
[ 21 ] |
| Other |
|
9% |
[ 10 ] |
| Intelisense for AutoHotKey |
|
0% |
[ 0 ] |
|
| Total Votes : 104 |
|
| Author |
Message |
Acris
Joined: 18 Jan 2010 Posts: 193 Location: Switzerland
|
Posted: Fri Mar 12, 2010 11:07 am Post subject: |
|
|
Hi,
i use Notepad++ sometimes QuickAHK |
|
| Back to top |
|
 |
noise
Joined: 14 May 2009 Posts: 57 Location: UK
|
Posted: Fri Mar 12, 2010 11:11 am Post subject: |
|
|
I used to use Notepad++ until I came across SciTE4AutoHotkey v2 and found that much better for my needs  _________________ PrimalNoise.com
It's a rock. Can't wait to tell my friends. They don't have a rock this big. |
|
| Back to top |
|
 |
PatrickS
Joined: 21 Mar 2010 Posts: 10
|
Posted: Sat Apr 03, 2010 2:16 am Post subject: |
|
|
I currently use Notepad++ but this thread is making me want to start experimenting.
One thing I've found very handy, independent of whatever editor you're using, is to use an alternate file extension for your main AHK code.
For example, here is my main AutoHotkey.ahk file:
| Code: | #Include %A_ScriptDir%\AutoHotkey
#Include AutoHotkey.ihk
|
This lets me do several things:- First, all of my code can go in a dedicated directory, like "My Documents\AutoHotkey"
- I can associate *.ahk files with the AutoHotkey executable, so double clicking on any of them automatically executes the script.
- I can also associate *.ihk (short for "Include Hotkeys") files with my editor, so when I double click on any of them, up pops my editor.
Really, I think it's the best of both worlds. |
|
| Back to top |
|
 |
|