From ed231fdf9486f6310073138e964ecd1987915e42 Mon Sep 17 00:00:00 2001 From: Jacopo De Simoi Date: Tue, 5 Dec 2017 13:25:11 -0500 Subject: [PATCH] Keep tempo when opening buffers Add the binding C-x C-b (on top of C-x b) for opening helm-mini --- global.org | 1 + 1 file changed, 1 insertion(+) diff --git a/global.org b/global.org index 0d4d157..d9668b3 100644 --- a/global.org +++ b/global.org @@ -470,6 +470,7 @@ This is the same as using \\[set-mark-command] with the prefix argument." (global-set-key (kbd "M-x") 'helm-M-x) (global-set-key (kbd "C-x C-f") 'helm-find-files) (global-set-key (kbd "C-x b") 'helm-mini) +(global-set-key (kbd "C-x C-b") 'helm-mini) (global-set-key (kbd "M-y") 'helm-show-kill-ring) (define-key helm-map (kbd "C-h") nil) (define-key helm-find-files-map (kbd "C-h") nil)