Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lispy.el
Original file line number Diff line number Diff line change
Expand Up @@ -2025,13 +2025,13 @@ For Clojure modes, toggle #_ sexp comment."
(lispy-different)))
(self-insert-command arg)))

(defun lispy-backtick ()
"Insert `."
(interactive)
(defun lispy-backtick (&optional arg)
"Insert ` ARG times."
(interactive "p")
(if (region-active-p)
(lispy--surround-region "`" "'")
(lispy--space-unless "\\s-\\|\\s(\\|[:?`']\\|\\\\")
(insert "`")))
(self-insert-command arg)))

(defun lispy-tilde (arg)
"Insert ~ ARG times.
Expand Down