Browse Source

Merge pull request #553 from toctan/proced-binding

Binding proced only in Linux
custom
Bozhidar Batsov 12 years ago
parent
commit
50ccd6db23
  1. 3
      core/prelude-global-keybindings.el

3
core/prelude-global-keybindings.el

@ -48,7 +48,8 @@
(global-set-key (kbd "C-^") 'prelude-top-join-line) (global-set-key (kbd "C-^") 'prelude-top-join-line)
;; Start proced in a similar manner to dired ;; 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. ;; Start eshell or switch to it if it's active.
(global-set-key (kbd "C-x m") 'eshell) (global-set-key (kbd "C-x m") 'eshell)

Loading…
Cancel
Save