punassuming / ahk-mode

AutotHotkey major mode for emacs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

License GPL 3 MELPA MELPA Stable

ahk-mode

An Emacs major mode for editing AutoHotkey scripts (.ahk).

Features

  • Syntax highlighting
  • company-mode and ac-complete compatibility
  • indentation and commenting functionality
  • Documentation lookup capability

Installation

Available on all major package.el community maintained repos - MELPA Stable and MELPA repos.

MELPA Stable is recommended as it has the latest stable version. MELPA has a development snapshot for users who don't mind breakage but don't want to run from a git checkout.

You can install ahk-mode using the following command:

M-x package-install [RET] ahk-mode [RET]

or if you'd rather keep it in your dotfiles:

(unless (package-installed-p 'ahk-mode)
  (package-refresh-contents)
  (package-install 'ahk-mode))

If the installation doesn't work try refreshing the package list:

M-x package-refresh-contents

TODO

  • Improve indentation heuristics.
  • Allow documentation lookup with local chm files.
  • Allow commenting of block using alternate commenting syntax (/* */).

License

Copyright © 2015-2016 Rich Alesi and contributors.

Distributed under the GNU General Public License; type C-h C-c to view it.

About

AutotHotkey major mode for emacs


Languages

Language:Emacs Lisp 52.1%Language:AutoHotkey 47.9%