branch: elpa/evil-args commit d172084a205b36af18d72da4b8c98c89cec02c17 Author: wcsmith <wconnorsm...@gmail.com> Commit: wcsmith <wconnorsm...@gmail.com>
README formatting. --- README.md | 6 +++--- evil-args.el | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c128d57eaf..5ce4d0aeaf 100644 --- a/README.md +++ b/README.md @@ -12,13 +12,13 @@ Add the following to your `.emacs`: (add-to-list 'load-path "path/to/evil-args") (require 'evil-args) -`evil-arg` text objects have been bound to the `a` key by default. To bind them +`evil-args` text objects have been bound to the `a` key by default. To bind them to another key `k`, add: (define-key evil-inner-text-objects-map "k" 'evil-inner-arg) (define-key evil-outer-text-objects-map "k" 'evil-outer-arg) -To enable evil-args motions, add the following keybindings: +To enable `evil-args` motions, add the following keybindings: (define-key evil-normal-state-map "L" 'evil-forward-arg) (define-key evil-normal-state-map "H" 'evil-backward-arg) @@ -104,7 +104,7 @@ delimiters and matching pairs can be customized by changing the variables `evil-args-openers`, `evil-args-closers`, and `evil-args-delimiters`. For example, setting `evil-args-delimiters` to `(" ")` would allow for -evil-args features in Lisp lists; repeated presses of `evil-forward-arg` +`evil-args` features in Lisp lists; repeated presses of `evil-forward-arg` would yield: (fun|ction a b) diff --git a/evil-args.el b/evil-args.el index 07f156c75c..fd2c88ea0f 100644 --- a/evil-args.el +++ b/evil-args.el @@ -37,8 +37,8 @@ ;; (add-to-list 'load-path "path/to/evil-args") ;; (require 'evil-args) ;; -;; evil-arg text objects have been bound to the 'a' key by default. To bind them -;; to another key 'k', add: +;; evil-args text objects have been bound to the 'a' key by default. To bind +;; them to another key 'k', add: ;; ;; (define-key evil-inner-text-objects-map "k" 'evil-inner-arg) ;; (define-key evil-outer-text-objects-map "k" 'evil-outer-arg)