Extra evil ex commands
Emacs Lisp Makefile
Switch branches/tags
Nothing to show

README.md

Build Status

evil-expat.el

Add extra evil ex commands, including:

  • :reverse reverse visually selected lines
  • :remove remove current file and its buffer
  • :rename rename or move current file and its buffer
  • :colorscheme change emacs color theme
  • :diff-orig get a diff of unsaved changes, like vim's common :DiffOrig
  • :gblame git-blame current file, requires magit
  • :gremove git remove current file, requires magit
  • :tyank copy range into tmux paste buffer, requires running under tmux
  • :tput paste from tmux paste buffer, requires running under tmux

Installation

NOTE: this section is invalid, the package isn't on Melpa yet.

with use-package

(use-package evil-expat
  :ensure t
  ;; optional, defer loading until 1 second of inactivity,
  ;; hence not affecting emacs startup time
  :defer 1)

without use-package

M-x package-install RET evil-expat RET, then add in init.el:

(require 'evil-expat)