Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 938 Bytes

README.markdown

File metadata and controls

26 lines (18 loc) · 938 Bytes

inform7-mode

This is a pretty basic emacs major mode for editing Inform 7 story files. It handles highlighting and indentation, but nothing else at the moment. So you'll still need the full Inform IDE for actual development.

Dependencies

Inform7-mode is based on sws-mode, which is part of jade-mode.

Installation

  1. Install jade-mode as directed on the project page

  2. Clone git://github.com/fred-o/inform7-mode.git into ~/.emacs.d/vendor/

  3. Add the following to you init file:

    (add-to-list 'load-path "~/.emacs.d/vendor/inform7-mode/")
    (autoload 'inform7-mode "inform7-mode"   "Major mode for editing inform 7 story files." t)
    (add-to-list 'auto-mode-alist '("\\.ni" . inform7-mode))
    
  4. Enjoy!