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

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

[nongnu] elpa/evil-args e851ac4570 09/27: Added more commentary to evil-


From: ELPA Syncer
Subject: [nongnu] elpa/evil-args e851ac4570 09/27: Added more commentary to evil-args.el.
Date: Wed, 2 Feb 2022 20:58:11 -0500 (EST)

branch: elpa/evil-args
commit e851ac457093d3e4e6761250ca0e156137108d1e
Author: wcsmith <wconnorsmith@gmail.com>
Commit: wcsmith <wconnorsmith@gmail.com>

    Added more commentary to evil-args.el.
---
 evil-args.el | 35 +++++++++++++++++++++++++++++------
 1 file changed, 29 insertions(+), 6 deletions(-)

diff --git a/evil-args.el b/evil-args.el
index 89dd5f6721..f9a7fab15b 100644
--- a/evil-args.el
+++ b/evil-args.el
@@ -1,14 +1,15 @@
 ;;; evil-args.el --- Motions and text objects for delimited arguments in Evil.
 
-;; Author:
-;;     Connor Smith
+;; Copyright (c) 2014 Connor Smith
+
+;; Author: Connor Smith <wconnorsmith@gmail.com>
+;; Version: 1.0
+;; Keywords: evil, vim
 
 ;; This file is NOT part of GNU Emacs.
 
 ;; The MIT License (MIT)
 
-;; Copyright (c) 2014 Connor Smith
-
 ;; Permission is hereby granted, free of charge, to any person obtaining a copy
 ;; of this software and associated documentation files (the "Software"), to 
deal
 ;; in the Software without restriction, including without limitation the rights
@@ -27,8 +28,30 @@
 ;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
THE
 ;; SOFTWARE.
 
-;; Commentary:
-;;     See README.md for usage.
+;;; Commentary:
+
+;; This package provides motions and text objects for delimited agruments in
+;; Evil, the extensible vi layer. To activate it, add the following to your
+;; .emacs:
+;;
+;;     (add-to-list 'load-path "path/to/evil-args")
+;;     (require 'evil-args)
+;;
+;; Optionally, add the following keybindings with keys of your choice:
+;;
+;;    (define-key evil-normal-state-map "L" 'evil-forward-arg)
+;;    (define-key evil-normal-state-map "H" 'evil-backward-arg)
+;;
+;;    (define-key evil-motion-state-map "L" 'evil-forward-arg)
+;;    (define-key evil-motion-state-map "H" 'evil-backward-arg)
+;;
+;;    (define-key evil-inner-text-objects-map "a" 'evil-inner-arg)
+;;    (define-key evil-outer-text-objects-map "a" 'evil-outer-arg)
+;;
+;;    (define-key evil-normal-state-map "K" 'evil-jump-out-args)
+;;
+;; See README.md for more details.
+
 
 (require 'evil)
 



reply via email to

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