Skip to content

Commit 34e3119

Browse files
committed
Fix indentation warnings
1 parent 4be01aa commit 34e3119

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

clojure-ts-mode.el

+6-6
Original file line numberDiff line numberDiff line change
@@ -239,9 +239,9 @@ if a third argument (the value) is provided.
239239
(defconst clojure-ts--typedef-symbol-regexp
240240
(eval-and-compile
241241
(rx line-start
242-
(or "defprotocol" "defmulti" "deftype" "defrecord"
243-
"definterface" "defmethod" "defstruct")
244-
line-end))
242+
(or "defprotocol" "defmulti" "deftype" "defrecord"
243+
"definterface" "defmethod" "defstruct")
244+
line-end))
245245
"A regular expression matching a symbol used to define a type.")
246246

247247
(defconst clojure-ts--type-symbol-regexp
@@ -773,7 +773,7 @@ forms like deftype, defrecord, reify, proxy, etc."
773773

774774
(defun clojure-ts--match-fn-docstring (node)
775775
"Match NODE when it is a docstring for PARENT function definition node."
776-
;; A string that is the third node in a function defn block
776+
;; A string that is the third node in a function defn block
777777
(let ((parent (treesit-node-parent node)))
778778
(and (treesit-node-eq node (treesit-node-child parent 2 t))
779779
(let ((first-auncle (treesit-node-child parent 0 t)))
@@ -854,11 +854,11 @@ forms like deftype, defrecord, reify, proxy, etc."
854854
(defconst clojure-ts--thing-settings
855855
`((clojure
856856
(sexp ,(regexp-opt clojure-ts--sexp-nodes)
857-
text ,(regexp-opt '("comment"))))))
857+
text ,(regexp-opt '("comment"))))))
858858

859859
(defvar clojure-ts-mode-map
860860
(let ((map (make-sparse-keymap)))
861-
;(set-keymap-parent map clojure-mode-map)
861+
;;(set-keymap-parent map clojure-mode-map)
862862
map))
863863

864864
(defvar clojurescript-ts-mode-map

0 commit comments

Comments
 (0)