From d529ef86a5e90628416d64b8e6e7f681bce5e79f Mon Sep 17 00:00:00 2001 From: toctan Date: Wed, 28 May 2014 19:17:26 +0800 Subject: [PATCH] Do not bind proced with OS X --- core/prelude-global-keybindings.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/prelude-global-keybindings.el b/core/prelude-global-keybindings.el index 877534b..9e29c89 100644 --- a/core/prelude-global-keybindings.el +++ b/core/prelude-global-keybindings.el @@ -48,7 +48,8 @@ (global-set-key (kbd "C-^") 'prelude-top-join-line) ;; Start proced in a similar manner to dired -(global-set-key (kbd "C-x p") 'proced) +(unless (eq system-type 'darwin) + (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)