branch: master commit 15b38a8af92cf0a0725ed15fcc9389bd7ddbc01d Author: Jackson Ray Hamilton <jack...@jacksonrayhamilton.com> Commit: Jackson Ray Hamilton <jack...@jacksonrayhamilton.com>
Cleanup. --- README.md | 2 -- context-coloring.el | 11 ++--------- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 21ba184..0914475 100644 --- a/README.md +++ b/README.md @@ -171,9 +171,7 @@ required. [linter]: http://jshint.com/about/ [flycheck]: http://www.flycheck.org/ -[zenburn]: http://github.com/bbatsov/zenburn-emacs [point]: http://www.gnu.org/software/emacs/manual/html_node/elisp/Point.html [js2-mode]: https://github.com/mooz/js2-mode [node]: http://nodejs.org/download/ [scopifier]: https://github.com/jacksonrayhamilton/scopifier -[load path]: https://www.gnu.org/software/emacs/manual/html_node/emacs/Lisp-Libraries.html diff --git a/context-coloring.el b/context-coloring.el index 6af9444..836a66c 100644 --- a/context-coloring.el +++ b/context-coloring.el @@ -56,13 +56,6 @@ (require 'js2-mode) -;;; Constants - -(defconst context-coloring-path - (file-name-directory (or load-file-name buffer-file-name)) - "This file's directory.") - - ;;; Customizable options (defcustom context-coloring-delay 0.25 @@ -81,8 +74,8 @@ Supported modes: `js-mode', `js3-mode'" (defcustom context-coloring-js-block-scopes nil "If non-nil, also color block scopes in the scope hierarchy in JavaScript. -The block-scope-inducing `let' and `const' are introduced in ES6. -If you are writing ES6 code, enable this; otherwise, don't. +The block-scoped `let' and `const' are introduced in ES6. If you +are writing ES6 code, enable this; otherwise, don't. Supported modes: `js2-mode'" :group 'context-coloring)