Skip to content

Commit

Permalink
fix license year / minor readme changes
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyReichert committed Jul 8, 2015
1 parent 45ef39b commit 4bff63e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
10 changes: 4 additions & 6 deletions README.org
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#+AUTHOR: Cody Reichert
#+EMAIL: [email protected]
#+TITLE: shakespeare-mode.el [[http://melpa.org/#/shakespeare-mode][file:http://melpa.org/packages/shakespeare-mode-badge.svg]]

A major mode that provides syntax highlighting and indentation for
Expand All @@ -17,8 +18,8 @@
lines to your .emacs:

#+BEGIN_SRC elisp
(add-to-list 'load-path "/path/to/this/clone/")
(load "shakespeare-mode")
(add-to-list 'load-path "/path/to/this/clone")
(require 'shakespeare-mode)
#+END_SRC

And that's it. Open up a hamlet, lucius, or julius file to make sure it worked.
Expand All @@ -34,7 +35,7 @@
shakespeare-lucius-mode
#+END_SRC

They each have mode-maps and mode-hooks you use to add functions and
They each have mode-maps and hooks you use to add functions and
key bindings to them individually.

Alternatively, a minor mode is also loaded with mode-maps and mode-hooks
Expand Down Expand Up @@ -107,6 +108,3 @@
License for more details. You should have received a copy of the
GNU General Public License along with this program. If not, see
http://www.gnu.org/licenses/

For any additional information or questions, you can contact me at
[email protected]
5 changes: 2 additions & 3 deletions shakespeare-mode.el
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
;;; shakespeare-mode.el --- A major mode for editing Shakespearean templates.
;;
;; Copyright (C) 2014 Cody Reichert
;; Copyright (C) 2014 - 2015 Cody Reichert
;;
;; Author: Cody Reichert
;; URL: http://github.com/CodyReichert/shakespeare-mode
Expand Down Expand Up @@ -96,8 +96,7 @@
;; julius
;; hamlet interpolation and control flow keywords
(defconst shakespeare-julius-font-lock-keywords
'(
("\\([@^#]{[^}]+}\\)" . font-lock-preprocessor-face)
'(("\\([@^#]{[^}]+}\\)" . font-lock-preprocessor-face)
("^[ \t]*\\($\\w+\\)" . font-lock-keyword-face)))


Expand Down

0 comments on commit 4bff63e

Please sign in to comment.