mirror of
https://github.com/vale981/boon
synced 2025-03-04 09:01:39 -05:00
fix #67
This commit is contained in:
parent
501adc6580
commit
03330abe31
1 changed files with 5 additions and 2 deletions
|
@ -80,7 +80,8 @@
|
|||
(forward-comment -1))
|
||||
((looking-back "\\s\"" back-limit)
|
||||
(backward-char)
|
||||
(er--move-point-backward-out-of-string))
|
||||
(when-let ((char (nth 8 (syntax-ppss))))
|
||||
(goto-char char)))
|
||||
((looking-back "\\s)" back-limit)
|
||||
(backward-list))
|
||||
((looking-back "\\s_" back-limit) ;; symbol
|
||||
|
@ -109,7 +110,9 @@
|
|||
(forward-comment 1))
|
||||
((looking-at "\\s\"")
|
||||
(forward-char)
|
||||
(er--move-point-forward-out-of-string))
|
||||
(when-let ((char (nth 8 (syntax-ppss))))
|
||||
(goto-char char)
|
||||
(forward-sexp)))
|
||||
((looking-at "\\s(")
|
||||
(forward-list))
|
||||
((looking-at "\\s_") ;; symbol
|
||||
|
|
Loading…
Add table
Reference in a new issue