;;; evil-visual-mark-mode.el --- Display evil marks on buffer
;; Copyright (C) 2015 Roman Gonzalez.
;; Author: Roman Gonzalez <romanandreg@gmail.com>
;; Maintainer: Roman Gonzalez <romanandreg@gmail.com>
;; Version: 0.0.5
;; Package-Version: 20230202.318
;; Package-Commit: 2bbaaae56ae53e68a8bcc7bc2cfe830a14843b4d
;; Package-Requires: ((evil "1.0.9") (dash "2.10"))
;; Keywords: evil
;; This file is not part of GNU Emacs.
;; This program is free software: you can redistribute it and/or
;; modify it under the terms of the GNU General Public License as
;; published by the Free Software Foundation, either version 3 of the
;; License, or (at your option) any later version. This program is
;; distributed in the hope that it will be useful, but WITHOUT ANY
;; WARRANTY; without even the implied warranty of MERCHANTABILITY or
;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
;; License for more details. You should have received a copy of the
;; 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:
;;;###autoload
;;; evil-visual-mark-mode.el ends here