evil-collection/evil-collection-proced.el

93 lines
2.8 KiB
EmacsLisp
Raw Normal View History

2017-12-07 02:41:09 +01:00
;;; evil-collection-proced.el --- Evil bindings for proced -*- lexical-binding: t -*-
2017-11-06 11:51:45 +01:00
;; Copyright (C) 2017 Pierre Neidhardt
2018-08-27 10:41:51 +02:00
;; Author: Pierre Neidhardt <mail@ambrevar.xyz>
;; Maintainer: James Nguyen <james@jojojames.com>
2018-08-27 10:41:51 +02:00
;; Pierre Neidhardt <mail@ambrevar.xyz>
2018-03-02 02:22:38 +01:00
;; URL: https://github.com/emacs-evil/evil-collection
;; Version: 0.0.1
;; Package-Requires: ((emacs "25.1"))
;; Keywords: evil, proced, tools
2017-11-06 11:51:45 +01:00
;; This file 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, or (at your
;; option) any later version.
;;
;; This file 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.
;;
;; For a full copy of the GNU General Public License
;; see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; Evil bindings for proced.
2017-11-06 11:51:45 +01:00
;;; Code:
(require 'evil-collection)
2017-11-06 11:51:45 +01:00
(require 'proced)
(defconst evil-collection-proced-maps '(proced-mode-map))
2017-12-07 02:41:09 +01:00
(defun evil-collection-proced-setup ()
2018-02-22 18:00:13 +01:00
"Set up `evil' bindings for `proced'."
(evil-collection-inhibit-insert-state 'proced-mode-map)
2018-02-22 18:00:13 +01:00
(evil-set-initial-state 'proced-mode 'normal)
(evil-collection-define-key 'normal 'proced-mode-map
2017-11-06 11:51:45 +01:00
(kbd "<return>") 'proced-refine
;; mark
;; TODO: Implement a proced-toggle-mark?
"m" 'proced-mark ; Mentioned in documentation, should be followed.
"*" 'proced-mark-all
2018-02-24 15:42:01 +01:00
"M" 'proced-mark-all
"U" 'proced-unmark-all
2017-11-06 11:51:45 +01:00
"~" 'proced-toggle-marks
"c" 'proced-mark-children
2018-02-25 02:14:40 +01:00
"C" 'proced-mark-children ; Emacs has "C"
2017-11-06 11:51:45 +01:00
"p" 'proced-mark-parents
2018-02-25 02:14:40 +01:00
"P" 'proced-mark-parents ; Emacs has "P"
2017-11-06 11:51:45 +01:00
(kbd "<delete>") 'proced-unmark-backward
;; motion
;; TODO: Implement beginning-of-buffer / end-of-buffer.
(kbd "SPC") 'evil-scroll-down
(kbd "S-SPC") 'evil-scroll-up
"zt" 'proced-toggle-tree
"u" 'proced-undo
2018-02-25 02:14:40 +01:00
"O" 'proced-omit-processes ; TODO: Change default binding?
2017-11-06 11:51:45 +01:00
"x" 'proced-send-signal ; Emacs has "k" and "x", "k" is mentioned in documentation
;; filter
"s" 'proced-filter-interactive ; Refers to "[s]elect", Emacs has "f" mentioned in documentation.
"S" 'proced-format-interactive
;; sort
2018-02-22 18:00:13 +01:00
"oo" 'proced-sort-start ; Refers to "[o]rder", Emacs has "s" mentioned in documentation.
2017-11-06 11:51:45 +01:00
"oO" 'proced-sort-interactive
"oc" 'proced-sort-pcpu
"om" 'proced-sort-pmem
"op" 'proced-sort-pid
"ot" 'proced-sort-time
"ou" 'proced-sort-user
"r" 'proced-renice
;; refresh
2017-11-06 11:51:45 +01:00
"gr" 'revert-buffer
;; quit
2018-02-25 02:14:40 +01:00
"q" 'quit-window ; TODO: Macro support?
2017-11-06 11:51:45 +01:00
"ZQ" 'evil-quit
"ZZ" 'quit-window))
2017-12-07 02:41:09 +01:00
(provide 'evil-collection-proced)
;;; evil-collection-proced.el ends here