diff options
Diffstat (limited to 'evil-integration.el')
| -rw-r--r-- | evil-integration.el | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/evil-integration.el b/evil-integration.el index 112fa73..26e0c18 100644 --- a/evil-integration.el +++ b/evil-integration.el @@ -1,8 +1,32 @@ -;;;; Integrate Evil with other modules +;;; evil-integration.el --- Integrate Evil with other modules + +;; Author: Vegard Øye <vegard_oye at hotmail.com> +;; Maintainer: Vegard Øye <vegard_oye at hotmail.com> +;; +;; This file is NOT part of GNU Emacs. + +;;; License: + +;; This file is part of Evil. +;; +;; Evil 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. +;; +;; Evil 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 Evil. If not, see <http://www.gnu.org/licenses/>. (require 'evil-maps) (require 'evil-core) +;;; Code: + (mapc #'(lambda (cmd) (evil-set-command-property cmd :keep-visual t) (evil-declare-not-repeat cmd)) |
