├── .gitignore ├── AutoHotkey.sublime-build ├── AutoHotkey.sublime-completions ├── AutoHotkey.sublime-settings ├── AutoHotkey.tmLanguage ├── Comments.tmPreferences ├── Default.sublime-commands ├── Main.sublime-menu ├── MsgBox VariableNames.sublime-snippet ├── Performance Header.sublime-snippet ├── README.md ├── Tray Icon From Scriptname If Exists.sublime-snippet ├── Tray Icon from Iconfile If Exists.sublime-snippet ├── UNLICENSE.txt └── ahkexec.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.cache -------------------------------------------------------------------------------- /AutoHotkey.sublime-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkscript/SublimeAutoHotkey/HEAD/AutoHotkey.sublime-build -------------------------------------------------------------------------------- /AutoHotkey.sublime-completions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkscript/SublimeAutoHotkey/HEAD/AutoHotkey.sublime-completions -------------------------------------------------------------------------------- /AutoHotkey.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkscript/SublimeAutoHotkey/HEAD/AutoHotkey.sublime-settings -------------------------------------------------------------------------------- /AutoHotkey.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkscript/SublimeAutoHotkey/HEAD/AutoHotkey.tmLanguage -------------------------------------------------------------------------------- /Comments.tmPreferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkscript/SublimeAutoHotkey/HEAD/Comments.tmPreferences -------------------------------------------------------------------------------- /Default.sublime-commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkscript/SublimeAutoHotkey/HEAD/Default.sublime-commands -------------------------------------------------------------------------------- /Main.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkscript/SublimeAutoHotkey/HEAD/Main.sublime-menu -------------------------------------------------------------------------------- /MsgBox VariableNames.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkscript/SublimeAutoHotkey/HEAD/MsgBox VariableNames.sublime-snippet -------------------------------------------------------------------------------- /Performance Header.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkscript/SublimeAutoHotkey/HEAD/Performance Header.sublime-snippet -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkscript/SublimeAutoHotkey/HEAD/README.md -------------------------------------------------------------------------------- /Tray Icon From Scriptname If Exists.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkscript/SublimeAutoHotkey/HEAD/Tray Icon From Scriptname If Exists.sublime-snippet -------------------------------------------------------------------------------- /Tray Icon from Iconfile If Exists.sublime-snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkscript/SublimeAutoHotkey/HEAD/Tray Icon from Iconfile If Exists.sublime-snippet -------------------------------------------------------------------------------- /UNLICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkscript/SublimeAutoHotkey/HEAD/UNLICENSE.txt -------------------------------------------------------------------------------- /ahkexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahkscript/SublimeAutoHotkey/HEAD/ahkexec.py --------------------------------------------------------------------------------