fixed #99 - duplicate keybinding for bury-buffer

This commit is contained in:
Bozhidar Batsov 2012-03-28 14:38:11 +03:00
parent 98ec2368ae
commit ab37af433f

View file

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