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)