aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Leung <29217594+leungbk@users.noreply.github.com>2022-02-01 00:03:08 -0800
committerGitHub <noreply@github.com>2022-02-01 09:03:08 +0100
commit4d547d495c676ecbd9ea4baefb0289ed98f21c6e (patch)
tree9d9ca9336443805595f3723e148c2c5a67b8a2cc
parentbe97395e31861fa7b84e7440a87db455e2089107 (diff)
Fix beginning/end-of-current-sentence marker (#1574)
* evil-vars.el (evil-markers-alist): Adjust to new name
-rw-r--r--evil-vars.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/evil-vars.el b/evil-vars.el
index e4eded6..0a0b14d 100644
--- a/evil-vars.el
+++ b/evil-vars.el
@@ -1456,8 +1456,8 @@ Using `evil-with-restriction' stores the previous values of
`point-min' and `point-max' as a pair in this list.")
(evil-define-local-var evil-markers-alist
- '((?\( . evil-backward-sentence)
- (?\) . evil-forward-sentence)
+ '((?\( . evil-backward-sentence-begin)
+ (?\) . evil-forward-sentence-begin)
(?{ . evil-backward-paragraph)
(?} . evil-forward-paragraph)
(?' . evil-jump-backward-swap)