diff options
Diffstat (limited to 'evil-types.el')
| -rw-r--r-- | evil-types.el | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/evil-types.el b/evil-types.el index 2ed6466..2881ca2 100644 --- a/evil-types.el +++ b/evil-types.el @@ -1,4 +1,28 @@ -;;;; Type system +;;; evil-types.el --- Type system + +;; 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/>. + +;;; Commentary: ;; A type defines a transformation on a pair of buffer positions. ;; Types are used by Visual state (character/line/block selection) @@ -26,6 +50,8 @@ (require 'evil-common) (require 'evil-macros) +;;; Code: + ;;; Type definitions (evil-define-type exclusive |
