Flex Wiki Emacs Mode
Last changed: FLWCOM-jwdavidson

.
Summary

Authorship

FlexWikiEmacsMode was written by CraigAndera.

Installation

  1. Get flexwiki.el out of the FwContrib workspace. I'll assume you're putting it in a directory called ~/emacs/site/flexwiki.
  2. Add the following to your .emacs file :
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;
 ; This sets up my FlexWiki mode
 ;
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 (add-to-list 'load-path (expand-file-name "~/emacs/site/flexwiki"))
 (add-to-list 'auto-mode-alist '("\\.wiki$" . flexwiki-mode))
 (require 'flexwiki)

Usage

Open up a file with a .wiki extension. This should put you into flexwiki major mode. If you type a WikiWord, it should turn blue. If you hit ctrl-enter while on a wiki word, it will jump to a buffer that holds that page. If you hit ctrl-right arrow at the end of a partially completed WikiWord, it will autocomplete it for you.

That's all it does right now.

See Also