]> code.delx.au - gnu-emacs-elpa/commitdiff
Update options documentation.
authorJackson Ray Hamilton <jackson@jacksonrayhamilton.com>
Sat, 14 Mar 2015 18:39:42 +0000 (11:39 -0700)
committerJackson Ray Hamilton <jackson@jacksonrayhamilton.com>
Sat, 14 Mar 2015 18:39:42 +0000 (11:39 -0700)
README.md
context-coloring.el

index 2341c4943d1dc650e6c8fa2bcb3e33cc26a6fe70..7eeacf7564ba8855a79619162d29843d05264fc3 100644 (file)
--- a/README.md
+++ b/README.md
@@ -89,6 +89,20 @@ Add the following to your `~/.emacs` file:
 
 ## Customizing
 
+### Options
+
+- `context-coloring-syntactic-comments` (default: `t`): If non-nil, also color
+  comments using `font-lock`.
+- `context-coloring-syntactic-strings` (default: `t`): If non-nil, also color
+  strings using `font-lock`.
+- `context-coloring-delay` (default: `0.25`; supported modes: `js-mode`,
+  `js3-mode`): Delay between a buffer update and colorization.
+- `context-coloring-js-block-scopes` (default: `nil`; supported modes:
+  `js2-mode`): If non-nil, also color block scopes in the scope hierarchy in
+  JavaScript.
+
+### Color Schemes
+
 Color schemes for custom themes are automatically applied when those themes are
 active. Built-in theme support is available for: `ample`, `anti-zenburn`,
 `grandshell`, `leuven`, `monokai`, `solarized`, `spacegray`, `tango` and
index 1453f48a028f409219de5da52335d98525c2e978..cb6422715364c41fae0d9ffd5171c8a492e36636 100644 (file)
@@ -147,7 +147,7 @@ the END point (exclusive) with the face corresponding to LEVEL."
   :group 'context-coloring)
 
 (defcustom context-coloring-syntactic-strings t
-  "If non-nil, also color comments using `font-lock'."
+  "If non-nil, also color strings using `font-lock'."
   :group 'context-coloring)
 
 (defun context-coloring-font-lock-syntactic-comment-function (state)