From d143847bc321342ddb182c073df24f2b01e2d317 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Thu, 15 Jul 2021 11:02:28 +0200 Subject: [PATCH] Enable proced on Darwin too Proced works on Darwin since Emacs 26.1. See Emacs bug #16579. Remove the version check alltogether, because it is assumed that very few people are using older Emacsen at this point. --- CHANGELOG.md | 1 + core/prelude-global-keybindings.el | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6525bb..f15d048 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ * Bind all essential `avy` commands to their recommended keybindings. * Remove `company-lsp`. * Replace `yank-pop` key-binding to `counse-yank-pop` for `ivy-mode`. +* The keybinding for `proced` is now enabled unconditionally. ### Bugs fixed diff --git a/core/prelude-global-keybindings.el b/core/prelude-global-keybindings.el index dc0293e..003712b 100644 --- a/core/prelude-global-keybindings.el +++ b/core/prelude-global-keybindings.el @@ -46,8 +46,7 @@ (global-set-key (kbd "C-^") 'crux-top-join-line) ;; Start proced in a similar manner to dired -(unless (eq system-type 'darwin) - (global-set-key (kbd "C-x p") 'proced)) +(global-set-key (kbd "C-x p") 'proced) ;; Start eshell or switch to it if it's active. (global-set-key (kbd "C-x m") 'eshell)