diff --git a/evil-collection.el b/evil-collection.el index 9fd2fe0..740ac4a 100644 --- a/evil-collection.el +++ b/evil-collection.el @@ -43,7 +43,10 @@ (evil-dired-set-keys)) (with-eval-after-load 'edebug (require 'evil-edebug) - (evil-edebug-set-keys))) + (evil-edebug-set-keys)) + (with-eval-after-load 'ibuffer + (require 'evil-ibuffer) + (evil-ibuffer-set-keys))) ;;;###autoload (defun evil-collection-extra-modes-init () diff --git a/evil-ibuffer.el b/evil-ibuffer.el new file mode 100644 index 0000000..1964f29 --- /dev/null +++ b/evil-ibuffer.el @@ -0,0 +1,51 @@ +;;; evil-ibuffer.el --- Evil Integration for IBuffer -*- lexical-binding: t -*- + +;; Copyright (C) 2017 James Nguyen + +;; Author: James Nguyen +;; Maintainer: James Nguyen +;; URL: https://github.com/jojojames/evil-collection +;; Version: 0.0.1 +;; Package-Requires: ((emacs "25.1")) +;; Keywords: evil, ibuffer, tools +;; HomePage: https://github.com/jojojames/evil-collection + +;; This program 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. + +;; This program 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 this program. If not, see . + +;;; Commentary: +;; This package provides a sane set of defaults for `ibuffer-mode' when using +;; `evil-mode'. + +;;; Code: +(require 'evil-collection-util) +(require 'ibuffer) + +(defun evil-ibuffer-set-keys () + (+evilify-map + ibuffer-mode-map + :mode ibuffer-mode + :bindings + "gb" 'ibuffer-bury-buffer + "gB" 'ibuffer-copy-buffername-as-kill + "gw" 'ibuffer-copy-filename-as-kill + "gW" 'ibuffer-do-view-and-eval + "gr" 'ibuffer-update + "gx" 'ibuffer-kill-line + "\C-j" 'ibuffer-forward-filter-group + "\C-k" 'ibuffer-backward-filter-group ; Originally `ibuffer-kill-line'. + "gj" 'ibuffer-forward-filter-group + "gk" 'ibuffer-backward-filter-group)) + +(provide 'evil-ibuffer) +;;; evil-ibuffer.el ends here