emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/evil-visual-mark-mode 72f762402f 22/29: Follow comments fr


From: ELPA Syncer
Subject: [nongnu] elpa/evil-visual-mark-mode 72f762402f 22/29: Follow comments from @Dewdrops around exclude marks
Date: Mon, 9 Oct 2023 13:01:39 -0400 (EDT)

branch: elpa/evil-visual-mark-mode
commit 72f762402ff27bed8e14833ef31eaf864252ab06
Author: Roman Gonzalez <roman@unbounce.com>
Commit: Roman Gonzalez <roman@unbounce.com>

    Follow comments from @Dewdrops around exclude marks
---
 README.md                | 7 ++++++-
 evil-visual-mark-mode.el | 2 +-
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 3603a9b346..fa8ae0166d 100644
--- a/README.md
+++ b/README.md
@@ -7,11 +7,16 @@ is because you figured you are going to come back later, also 
you
 would like to track all your important functions without having to
 follow each marker.
 
-
 ## Screenshots
 
 
![screenshot](https://raw.githubusercontent.com/roman/evil-visual-mark-mode/master/evil-visual-mark-mode.gif)
 
+## Remove special characters from visual mark
+
+If for some reason, you would like to not display particular mark
+letters, you may add them to the `evil-visual-mark-exclude-marks`,
+by default this list will have the `^`, `[`, `]` special marks.
+
 ## Development
 
 Pull requests are very welcome! Please try to follow these simple rules:
diff --git a/evil-visual-mark-mode.el b/evil-visual-mark-mode.el
index bd88c31aab..179c47e157 100644
--- a/evil-visual-mark-mode.el
+++ b/evil-visual-mark-mode.el
@@ -44,7 +44,7 @@
 
 (defcustom evil-visual-mark-exclude-marks '("^" "[" "]")
   "Marks which should not be displayed on buffer."
-  :type '(repeat character)
+  :type '(repeat string)
   :group 'evil-visual-mark-mode)
 
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]