From 8c4e09dff83847ac7f07bf1da7751e9328006c4d Mon Sep 17 00:00:00 2001 From: Jack Jamison Date: Thu, 30 Jul 2026 20:09:00 -0400 Subject: actual final changes and get rid of junk in lisp dir actually works fine --- .config/emacs/lisp/evil/evil.el | 158 ---------------------------------------- 1 file changed, 158 deletions(-) delete mode 100644 .config/emacs/lisp/evil/evil.el (limited to '.config/emacs/lisp/evil/evil.el') diff --git a/.config/emacs/lisp/evil/evil.el b/.config/emacs/lisp/evil/evil.el deleted file mode 100644 index 757a564..0000000 --- a/.config/emacs/lisp/evil/evil.el +++ /dev/null @@ -1,158 +0,0 @@ -;;; evil.el --- Extensible vi layer -*- lexical-binding: t; -*- - -;; The following list of authors was kept up to date until the beginning of -;; 2017, when evil moved under new maintainers. For authors since then, please -;; consult the git logs. - -;; Alessandro Piras -;; Alexander Baier -;; Antono Vasiljev -;; Bailey Ling -;; Barry O'Reilly -;; Christoph Lange -;; Daniel Reiter -;; Eivind Fonn -;; Emanuel Evans -;; Eric Siegel -;; Eugene Yaremenko -;; Frank Fischer -;; Frank Terbeck -;; Gordon Gustafson -;; Herbert Jones -;; Jonas Bernoulli -;; Jonathan Claggett -;; José A. Romero L. -;; Justin Burkett -;; Lars Andersen -;; Lintaro Ina -;; Lukasz Wrzosek -;; Marian Schubert -;; Matthew Malcomson <> -;; Michael Markert -;; Mike Gerwitz -;; Nikolai Weibull -;; phaebz -;; ralesi -;; Rodrigo Setti -;; Sanel Zukan -;; Sarah Brofeldt -;; Simon Hafner -;; Stefan Wehr -;; Sune Simonsen -;; Thomas Hisch -;; Tim Harper -;; Tom Willemse -;; Trevor Murphy -;; Ulrich Müller -;; Vasilij Schneidermann -;; Vegard Øye -;; Winfred Lu -;; Wolfgang Jenkner -;; Xiao Hanyu -;; York Zhao - -;; The following line is included for NonGNU ELPA's build script: -;; Maintainer: Tom Dalziel - -;; Maintainers: The emacs-evil team. -;; To get in touch, please use the bug tracker or the -;; mailing list (see below). -;; Created: 2011-03-01 -;; Version: 1.15.0 -;; Package-Requires: ((emacs "24.1") (cl-lib "0.5") (goto-chg "1.6") (nadvice "0.3")) -;; Keywords: emulations -;; URL: https://github.com/emacs-evil/evil -;; Repository: https://github.com/emacs-evil/evil.git -;; EmacsWiki: http://www.emacswiki.org/emacs/Evil -;; Bug tracker: https://github.com/emacs-evil/evil/issues -;; If you have bug reports, suggestions or patches, please -;; create an issue at the bug tracker (open for everyone). -;; Other discussions (tips, extensions) go to the mailing list. -;; Mailing list: -;; Subscribe: http://tinyurl.com/implementations-list -;; Newsgroup: nntp://news.gmane.org/gmane.emacs.vim-emulation -;; Archives: http://dir.gmane.org/gmane.emacs.vim-emulation -;; You don't have to subscribe to post; we usually reply -;; within a few days and CC our replies back to you. -;; -;; 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 . - -;;; Commentary: - -;; Evil is an extensible vi layer for Emacs. It emulates the main -;; features of Vim, and provides facilities for writing custom -;; extensions. -;; -;; Evil lives in a Git repository. To obtain Evil, do -;; -;; git clone git://github.com/emacs-evil/evil.git -;; -;; Move Evil to ~/.emacs.d/evil (or somewhere else in the `load-path'). -;; Then add the following lines to ~/.emacs: -;; -;; (add-to-list 'load-path "~/.emacs.d/evil") -;; (require 'evil) -;; (evil-mode 1) -;; -;; Evil requires undo-redo (Emacs 28), undo-fu or undo-tree for redo -;; functionality. Otherwise, Evil uses regular Emacs undo. -;; -;; https://codeberg.org/ideasman42/emacs-undo-fu -;; https://melpa.org/#/undo-fu -;; https://gitlab.com/tsc25/undo-tree -;; https://elpa.gnu.org/packages/undo-tree.html -;; -;; Evil requires `goto-last-change' and `goto-last-change-reverse' -;; function for the corresponding motions g; g, as well as the -;; last-change-register `.'. One package providing these functions is -;; goto-chg.el: -;; -;; https://github.com/emacs-evil/goto-chg -;; https://melpa.org/#/goto-chg -;; https://elpa.nongnu.org/nongnu/goto-chg.html -;; -;; Without this package the corresponding motions will raise an error. - -;;; Code: - -(require 'evil-vars) -(require 'evil-common) -(require 'evil-core) -(require 'evil-states) -(require 'evil-repeat) -(require 'evil-macros) -(require 'evil-search) -(require 'evil-ex) -(require 'evil-types) -(require 'evil-commands) -(require 'evil-jumps) -(require 'evil-maps) - -(when evil-want-integration - (require 'evil-integration)) - -(when evil-want-keybinding - (require 'evil-keybindings)) - -(run-hooks 'evil-after-load-hook) - -(provide 'evil) - -;;; evil.el ends here -- cgit v1.2.3