Skip to content

Commit

Permalink
refactor: fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyure-A committed Mar 5, 2024
1 parent 26253fb commit 26abb18
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions satysfi-ts-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -255,13 +255,13 @@
(catch-all parent-bol ,indent))))
"Indent rules for \='satysfi-ts-mode\='.")

(cl-defun satysfi-ts-mode--indent (&optional (i satysfi-ts-mode-indent-offset))
"Indent based on \='satysfi-ts-mode-indent-offset\='."
(cl-defun satysfi-ts-mode--indent (&optional (offset satysfi-ts-mode-indent-offset))
"Indent based on \='satysfi-ts-mode-indent-offset\=' (OFFSET)."
(interactive)
(if (= i 1)
(if (= offset 1)
(insert " ")
(insert " ")
(satysfi-ts-mode--indent (- i 1))))
(satysfi-ts-mode--indent (- offset 1))))

(defvar satysfi-ts-mode-map
(let ((keymap (make-sparse-keymap)))
Expand Down

0 comments on commit 26abb18

Please sign in to comment.