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
import sublime, sublime_plugin | |
import subprocess | |
import os | |
import re | |
from ctypes import * | |
class ahkexec(sublime_plugin.TextCommand): | |
# SET YOUR SETTINGS HERE | |
# Specify a 'key'(name it whatever you want) and assign it |
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
import sublime, sublime_plugin | |
import subprocess | |
import re | |
from ctypes import * | |
class ahkexec(sublime_plugin.TextCommand): | |
# SET YOUR SETTINGS HERE | |
# Specify a 'key'(name it whatever you want) and assign it | |
# a 'value'(string) containing the path to the AHK executable. |
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
/* | |
___________________________________________________________________________________ | |
***THE FOLLOWING METHOD(s) ARE USING SIMILAR ROUTINES AND ARE CALLED DYNAMICALLY. | |
THEY REDIRECT TO INTERNAL METHOD(s), THUS, DOCUMENTATION IS STATED HERE*** | |
____________________________________________________________________________________ | |
METHOD(s): addElement/insertElement | |
DEFINITION: Appends or inserts an element node | |
PARAMETER(s): |
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
; Random Gist | |
; Forum post testing | |
MsgBox, % "OS Version: " A_OSVersion | |
. "`nOS Type: " A_OsType | |
. "`nAHK PAth: " A_AhkPath | |
. "`nAHK Version: " A_AhkVersion | |
ExitApp |