Commit 815898f015db7b114c99596fb77b1e087b77eb19

Added setup instructions to the README file
README
(14 / 1)
  
11Processing mode for Emacs.
22Written by Rudolf Olah.
33
4== About & Usage ==
4Licensed under the GNU GPL version 3 or later.
55
6== About ==
7
68This mode is a derivative of the java-mode. It adds key-bindings for
79running/compiling Processing sketches and it also highlights keywords
810found in the Processing language, such as ``setup'', ``draw'', and
911``frameRate''.
12
13== Setup ==
14
15In your .emacs file, add this:
16
17 (add-to-list 'load-path "/path/to/processing-emacs/")
18 (autoload 'processing-mode "processing-mode" "Processing mode" t)
19 (add-to-list 'auto-mode-alist '("\\.pde$" . processing-mode))
20 (setq processing-location "/path/to/processing")
21
22== Usage ==
1023
1124The key-bindings are:
1225