Skip to content

Commit e097a3a

Browse files
committed
Add json-mode group
1 parent c528c77 commit e097a3a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

json-mode.el

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
;;; json-mode.el --- Major mode for editing JSON files
1+
;;; json-mode.el --- Major mode for editing JSON files.
22

33
;; Copyright (C) 2011-2014 Josh Johnston
44

@@ -31,6 +31,10 @@
3131
(require 'json-snatcher)
3232
(require 'json-reformat)
3333

34+
(defgroup json-mode '()
35+
"Major mode for editing JSON files."
36+
:group 'js)
37+
3438
(defconst json-mode-quoted-string-re
3539
(rx (group (char ?\")
3640
(zero-or-more (or (seq ?\\ ?\\)

0 commit comments

Comments
 (0)