Browse Source

fixed #99 - duplicate keybinding for bury-buffer

custom
Bozhidar Batsov 14 years ago
parent
commit
ab37af433f
  1. 6
      modules/prelude-global-keybindings.el

6
modules/prelude-global-keybindings.el

@ -42,8 +42,9 @@
(define-key global-map (kbd "C-+") 'text-scale-increase) (define-key global-map (kbd "C-+") 'text-scale-increase)
(define-key global-map (kbd "C--") 'text-scale-decrease) (define-key global-map (kbd "C--") 'text-scale-decrease)
;; File finding
;; cycle through buffers
(global-set-key (kbd "C-c r") 'bury-buffer) (global-set-key (kbd "C-c r") 'bury-buffer)
;; navigate the filecache
(global-set-key (kbd "M-`") 'file-cache-minibuffer-complete) (global-set-key (kbd "M-`") 'file-cache-minibuffer-complete)
;; Window switching. (C-x o goes to the next window) ;; Window switching. (C-x o goes to the next window)
@ -80,9 +81,6 @@
isearch-string isearch-string
(regexp-quote isearch-string)))))) (regexp-quote isearch-string))))))
;; cycle through buffers
(global-set-key (kbd "<C-tab>") 'bury-buffer)
;; use hippie-expand instead of dabbrev ;; use hippie-expand instead of dabbrev
(global-set-key (kbd "M-/") 'hippie-expand) (global-set-key (kbd "M-/") 'hippie-expand)

Loading…
Cancel
Save