aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVasilij Schneidermann <mail@vasilij.de>2018-02-22 19:32:05 +0100
committerGitHub <noreply@github.com>2018-02-22 19:32:05 +0100
commit3bf198796b2d135776143eac854e8d855cd94475 (patch)
tree199ff8ae8cb57b8dd1adc7aa430cb43cb43527b9
parent0c67df0e643fa68b7936fb37d88a6b5db319acdf (diff)
parent1a66372bcc251c9396510483c124e155a9b7317a (diff)
Merge pull request #1022 from emacs-evil/goto-mark-jump
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 466f36d..49d5e3c 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))