Skip to content

Commit 14ac4ca

Browse files
authored
Incremented version from 0.2.1 to 0.2.2.
1 parent 87bc438 commit 14ac4ca

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

dotenv-mode.el

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
;; Author: Preetpal S. Sohal
44
;; URL: https://github.com/preetpalS/emacs-dotenv-mode
5-
;; Version: 0.2.1
5+
;; Version: 0.2.2
66
;; Package-Requires: ((emacs "24.3"))
77
;; License: GNU General Public License Version 3
88

@@ -38,13 +38,13 @@
3838

3939
(defvar dotenv-mode-syntax-table
4040
(let ((table (make-syntax-table)))
41-
(modify-syntax-entry ?' "\"'" table) ; ?' is a string delimiter
42-
(modify-syntax-entry ?\" "\"" table) ; ?\" is a string delimiter
43-
(modify-syntax-entry ?# "<" table) ; ?# starts comments
44-
(modify-syntax-entry ?\n ">" table) ; ?\n ends comments
45-
(modify-syntax-entry ?_ "_" table) ; ?_ can be used in variable and command names
46-
(modify-syntax-entry ?\\ "\\" table) ; ?\\ is an escape sequence character
47-
(modify-syntax-entry ?$ "'" table) ; ?$ is an expression prefix; Used in highlighting $VARIABLES, ${SUBSTITUTED_VARIABLES}, and $(substituted commands) embedded in double-quoted strings
41+
(modify-syntax-entry ?' "\"'" table) ; ?' is a string delimiter
42+
(modify-syntax-entry ?\" "\"" table) ; ?\" is a string delimiter
43+
(modify-syntax-entry ?# "<" table) ; ?# starts comments
44+
(modify-syntax-entry ?\n ">" table) ; ?\n ends comments
45+
(modify-syntax-entry ?_ "_" table) ; ?_ can be used in variable and command names
46+
(modify-syntax-entry ?\\ "\\" table) ; ?\\ is an escape sequence character
47+
(modify-syntax-entry ?$ "'" table) ; ?$ is an expression prefix; Used in highlighting $VARIABLES, ${SUBSTITUTED_VARIABLES}, and $(substituted commands) embedded in double-quoted strings
4848
table))
4949

5050
;; Adapted from code generously donated by Fuco1 (https://github.com/Fuco1; see: https://fuco1.github.io/2017-06-11-Font-locking-with-custom-matchers.html)

0 commit comments

Comments
 (0)