aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--evil-commands.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/evil-commands.el b/evil-commands.el
index 2198a0c..e7fb345 100644
--- a/evil-commands.el
+++ b/evil-commands.el
@@ -571,11 +571,13 @@ and jump to the corresponding one."
(evil-define-motion evil-previous-open-paren (count)
"Go to COUNT previous unmatched \"(\"."
+ :jump t
:type exclusive
(evil-up-paren ?\( ?\) (- (or count 1))))
(evil-define-motion evil-next-close-paren (count)
"Go to COUNT next unmatched \")\"."
+ :jump t
:type exclusive
(forward-char)
(evil-up-paren ?\( ?\) (or count 1))
@@ -583,11 +585,13 @@ and jump to the corresponding one."
(evil-define-motion evil-previous-open-brace (count)
"Go to COUNT previous unmatched \"{\"."
+ :jump t
:type exclusive
(evil-up-paren ?{ ?} (- (or count 1))))
(evil-define-motion evil-next-close-brace (count)
"Go to COUNT next unmatched \"}\"."
+ :jump t
:type exclusive
(forward-char)
(evil-up-paren ?{ ?} (or count 1))