aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeni Kolev <evgenysw@gmail.com>2018-02-22 15:56:53 +0200
committerEvgeni Kolev <evgenysw@gmail.com>2018-02-22 15:56:53 +0200
commit1a66372bcc251c9396510483c124e155a9b7317a (patch)
treecb145df219a01d8a34e652ebf1c38c22ede091b9
parent2992858748e6fe8ae706d182b86b684e7b9be8b9 (diff)
Treat going to marks jumps
-rw-r--r--evil-commands.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/evil-commands.el b/evil-commands.el
index f2770ae..6800dfc 100644
--- a/evil-commands.el
+++ b/evil-commands.el
@@ -732,6 +732,7 @@ Columns are counted from zero."
:keep-visual t
:repeat nil
:type exclusive
+ :jump t
(interactive (list (read-char)))
(let ((marker (evil-get-marker char)))
(cond
@@ -756,6 +757,7 @@ Columns are counted from zero."
:keep-visual t
:repeat nil
:type line
+ :jump t
(interactive (list (read-char)))
(evil-goto-mark char noerror)
(evil-first-non-blank))