Skip to content

Passw/emacs-evil-evil

This branch is 18 commits behind emacs-evil/evil:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b7ab384 · Oct 6, 2024
May 31, 2024
Apr 30, 2024
Jul 9, 2023
Sep 4, 2017
Mar 1, 2011
Sep 15, 2024
Apr 30, 2024
Aug 2, 2013
May 10, 2017
Jul 30, 2012
Sep 15, 2024
Sep 15, 2024
Apr 14, 2024
Aug 27, 2023
Oct 6, 2024
Sep 15, 2024
Sep 15, 2024
Apr 25, 2022
Jul 9, 2023
Sep 15, 2024
Sep 15, 2024
Jul 12, 2024
Sep 15, 2024
Sep 15, 2024
Jul 10, 2024
Sep 15, 2024
Sep 15, 2024
Jul 21, 2024
Aug 20, 2023
Jul 21, 2024
May 26, 2024
Jul 10, 2024
Sep 15, 2024

Repository files navigation

An extensible vi layer for Emacs

Build status MELPA MELPA Stable NonGNU ELPA Documentation Status License: GPL v3

Evil is an extensible vi layer for Emacs. It emulates the main features of Vim, and provides facilities for writing custom extensions. Also see our page on EmacsWiki.

Installation

See the official documentation for installation instructions. We recommend using package.el.

As a quickstart, you can add the following code to your Emacs init file.

;; Set up package.el to work with MELPA
(require 'package)
(add-to-list 'package-archives
             '("melpa" . "https://melpa.org/packages/"))
(package-initialize)
(package-refresh-contents)

;; Download Evil
(unless (package-installed-p 'evil)
  (package-install 'evil))

;; Enable Evil
(require 'evil)
(evil-mode 1)

Dependencies

  • Evil requires Emacs 24.1 or later.

  • Evil requires any of the following for C-r:

    • undo-redo from Emacs 28
    • The undo-tree package (available via GNU ELPA)
    • The undo-fu package (available via MELPA and NonGNU ELPA)
  • For the motions g; g, and for the last-change-register ., Evil requires the goto-chg.el package (available via MELPA and NonGNU ELPA), which provides the functions goto-last-change and goto-last-change-reverse.

  • For Emacs 24.1 and 24.2 Evil also requires cl-lib.

Documentation

The latest version of the documentation is readable online here. It is also available as PDF and as EPUB.

Mailing list

Evil is discussed at the gmane.emacs.vim-emulation mailing list.

IRC

Visit us on irc.libera.chat #evil-mode.

Contribution

See CONTRIBUTING.md for guidelines for issues and pull requests.

About

The extensible vi layer for Emacs.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Emacs Lisp 99.7%
  • Other 0.3%