Skip to content
/ aiern Public
forked from emacs-evil/evil

The extensible vi layer for Emacs.

License

Notifications You must be signed in to change notification settings

syvlorg/aiern

 
 

Repository files navigation

An extensible vi layer for Emacs

Build Status MELPA MELPA Stable Documentation Status License: GPL v3

aiern 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 aiern
(unless (package-installed-p 'aiern)
  (package-install 'aiern))

;; Enable aiern
(require 'aiern)
(aiern-mode 1)

Dependencies

  • aiern requires Emacs 24.1 or later.

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

  • For the motions g; g, and for the last-change-register ., aiern requires the goto-chg.el package, which provides the functions goto-last-change and goto-last-change-reverse.

  • For Emacs 24.1 and 24.2 aiern 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

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

IRC

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

Contribution

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

About

The extensible vi layer for Emacs.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Emacs Lisp 99.3%
  • Other 0.7%