branch: elpa/rainbow-delimiters
commit 6345c1fa4b65d01486db6b91ce644a9eccc8ced7
Author: Jeremy L. Rayman <[email protected]>
Commit: Jeremy L. Rayman <[email protected]>
Release rainbow-delimiters version 1.3.4 (2012-04-27).
---
README.markdown | 21 +++++++++------------
1 file changed, 9 insertions(+), 12 deletions(-)
diff --git a/README.markdown b/README.markdown
index 02975a3d9f..11d74ef7e0 100644
--- a/README.markdown
+++ b/README.markdown
@@ -3,16 +3,16 @@ rainbow-delimiters.el:
RainbowDelimiters is a “rainbow parentheses”-like mode which highlights
parentheses, brackets, and braces according to their depth. Each successive
level is highlighted in a different color. This makes it easy to spot matching
delimiters, orient yourself in the code, and tell which statements are at a
given depth.
-Great care has been taken to make this mode FAST. You shouldn’t see any change
in scrolling or editing speed when it’s on even when working in delimiter-rich
languages like Clojure, Lisp and Scheme.
+Great care has been taken to make this mode FAST. You shouldn’t see any change
in scrolling or editing speed when it's on even when working in delimiter-rich
languages like Clojure, Emacs Lisp or Scheme. It can be used with any language,
and can be enabled editor-wide.
-You can customize the colors RainbowDelimiters uses. The default colors are
intentionally subtle; they are unobtrusive enough to make the mode worth
looking at even if you usually don’t like rainbow parentheses modes.
+You can customize the colors RainbowDelimiters uses. The default colors are
intentionally subtle; they are unobtrusive enough to make the mode worth
looking at even if you usually don’t like rainbow parentheses modes. Color
themes Zenburn and Solarized have added their own faces for the mode.
-This is the official github repository for rainbow-delimiters. It is made
available so people can easily contribute to the mode.
+This is the official github repository for rainbow-delimiters.
-The latest <b>release</b> of rainbow-delimiters.el is always found at the
following location on EmacsWiki:
+The latest <b>release</b> of rainbow-delimiters.el is always found here:
<br />
<b>
-*
[rainbow-delimiters.el](http://www.emacswiki.org/emacs/download/rainbow-delimiters.el)
+*
[rainbow-delimiters.el](http://github.com/jlr/rainbow-delimiters/raw/master/rainbow-delimiters.el)
</b>
Further information is available on the [EmacsWiki
page](http://www.emacswiki.org/emacs/RainbowDelimiters):
@@ -27,26 +27,23 @@ Installation instructions:
1. Place rainbow-delimiters.el on your emacs load-path.
2. Compile the file (necessary for speed):
-<br /><code>M-x byte-compile-file <location of rainbow-delimiters.el></code>
+<br /><code>M-x byte-compile-file [location of rainbow-delimiters.el]</code>
3. Add the following to your dot-emacs/init file:
<br /><code>(require 'rainbow-delimiters)</code>
4. Activate the mode in your init file.
<br />
-You can choose to enable it only in certain modes, or Emacs-wide:
+<i>You can choose to enable it only for specific modes, or Emacs-wide:</i>
-* To enable it only in specific modes, add lines like the following:
+* To enable it only in certain modes, add lines like the following:
<br /><code>(add-hook 'clojure-mode-hook 'rainbow-delimiters-mode)</code>
-
-* To enable it for **all** programming modes, add the following line (emacs 24
or higher):
+* To enable it in all programming-related emacs modes (Emacs 24+):
<br /><code>(add-hook 'prog-mode-hook 'rainbow-delimiters-mode)</code>
-
* To activate the mode globally, add to your init file:
<br /><code>(global-rainbow-delimiters-mode)</code>
-
* To temporarily activate rainbow-delimiters mode in an open buffer:
<br /><code>M-x rainbow-delimiters-mode</code>