Skip to content

Commit 0cfe341

Browse files
yuhan0bbatsov
authored andcommitted
Fix eldoc sexp movement
1 parent 1875ea3 commit 0cfe341

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cider-eldoc.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ if the maximum number of sexps to skip is exceeded."
286286
(error))
287287
(while
288288
(let ((p (point)))
289-
(forward-sexp -1)
289+
(clojure-backward-logical-sexp 1)
290290
(when (< (point) p)
291291
(setq num-skipped-sexps
292292
(unless (and cider-eldoc-max-num-sexps-to-skip

0 commit comments

Comments
 (0)