Last active
April 26, 2021 15:35
-
-
Save JoeGlines/92668a268737a1ac3063e3bd289f88a8 to your computer and use it in GitHub Desktop.
Run selected text in SciTE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#******************************************************* | |
# Want a clear path for learning AutoHotkey; Take a look at our AutoHotkey Udemy courses. They're structured in a way to make learning AHK EASY | |
# Right now you can get a coupon code here: https://the-Automator.com/Learn | |
#******************************************************* | |
#***********Run selection in AutoHotkey******************* | |
command.name.45.$(file.patterns.ahk)=Run selection | |
command.mode.45.$(file.patterns.ahk=subsystem:2,savebefore:no | |
# Path to AutoHotkey.exe Path to SelectRun.ahk | |
command.45.$(file.patterns.ahk)="B:\Progs\AutoHotkey_L\AutoHotkey.exe" "B:\SelectRun.ahk" | |
command.input.45.$(file.patterns.ahk)=$(CurrentSelection) | |
command.shortcut.45.$(file.patterns.ahk)=Ctrl+r |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment