Add evil-ibuffer

This commit is contained in:
James Nguyen 2017-11-05 09:12:14 -08:00
parent 1d9f6c521c
commit 1597b8e048
2 changed files with 55 additions and 1 deletions

View File

@ -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 ()

51
evil-ibuffer.el Normal file
View File

@ -0,0 +1,51 @@
;;; evil-ibuffer.el --- Evil Integration for IBuffer -*- lexical-binding: t -*-
;; Copyright (C) 2017 James Nguyen
;; Author: James Nguyen <james@jojojames.com>
;; Maintainer: James Nguyen <james@jojojames.com>
;; 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 <http://www.gnu.org/licenses/>.
;;; 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