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 3f5657a027 11/29: Merge pull request


From: ELPA Syncer
Subject: [nongnu] elpa/evil-visual-mark-mode 3f5657a027 11/29: Merge pull request #2 from purcell/patch-1
Date: Mon, 9 Oct 2023 13:01:38 -0400 (EDT)

branch: elpa/evil-visual-mark-mode
commit 3f5657a027c03cfd2124d4d260b4583acec0c094
Merge: 545fdfa6a6 1dbd2a98f6
Author: Roman Gonzalez <roman@users.noreply.github.com>
Commit: Roman Gonzalez <roman@users.noreply.github.com>

    Merge pull request #2 from purcell/patch-1
    
    Fix up metadata to keep package.el happy
---
 evil-visual-mark-mode.el | 20 +++++++++++++++-----
 1 file changed, 15 insertions(+), 5 deletions(-)

diff --git a/evil-visual-mark-mode.el b/evil-visual-mark-mode.el
index 7d9eafdbc1..7f7d16cb44 100644
--- a/evil-visual-mark-mode.el
+++ b/evil-visual-mark-mode.el
@@ -1,5 +1,4 @@
-;;; evil-visual-mark-mode --- Display evil marks on buffer
-;;; Commentary:
+;;; evil-visual-mark-mode.el --- Display evil marks on buffer
 
 ;; Copyright (C) 2015 Roman Gonzalez.
 
@@ -22,6 +21,17 @@
 ;; GNU General Public License along with this program.  If not, see
 ;; <http://www.gnu.org/licenses/>.
 
+;;; Commentary:
+
+;; evil-visual-mark-mode displays all the evil marks you have
+;; registered on a buffer. The purpose of this extension is to enhance
+;; the marks in a buffer, normally when you set a mark on a position
+;; 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.
+
+;;; Code:
+
 
 (require 'evil)
 (require 'dash)
@@ -69,11 +79,11 @@ This function is called when enabling the 
evil-visual-marker-mode."
                        (marker     (cdr it))
                        (new-item   (list nil nil))
                        (new-overlay (evil-visual-mark-make-overlay marker)))
-                  
+
                   (setf (car new-item) letter)
                   (setf (cdr new-item) new-overlay)
 
-                  
+
                   new-item))))))
 
 
@@ -166,4 +176,4 @@ This updates the overlays that show the evil marks on 
buffer."
 
 (provide 'evil-visual-mark-mode)
 
-;;; evil-visual-mark-mode ends here
+;;; evil-visual-mark-mode.el ends here



reply via email to

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