spacemacs/contrib/lang/autohotkey/extensions.el

23 lines
501 B
EmacsLisp
Raw Normal View History

;; Extensions are in emacs_paths/extensions
;; Pre extensions are loaded *before* the packages
(defvar autohotkey-pre-extensions
'(
))
;; Post extensions are loaded *after* the packages
(defvar autohotkey-post-extensions
'(
ahk-mode
))
;; Initialize the extensions
(defun autohotkey/init-ahk-mode ()
(use-package ahk-mode
2015-02-15 03:44:43 +00:00
:defer t
:init
(evil-leader/set-key-for-mode 'ahk-mode
"m d" 'ahk-lookup-ahk-ref
2015-02-15 03:44:43 +00:00
"m e" 'run-this-ahk-script)))