From 36fdd7839a9d00178b59413cf7af3686b3687b38 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 29 Jun 2015 03:19:32 -0700 Subject: [PATCH] Remove custom bindings for find-function and find-variable. --- dotfiles/emacs.d/init.el | 3 --- 1 file changed, 3 deletions(-) diff --git a/dotfiles/emacs.d/init.el b/dotfiles/emacs.d/init.el index f74398f0..c62fee1d 100644 --- a/dotfiles/emacs.d/init.el +++ b/dotfiles/emacs.d/init.el @@ -695,7 +695,6 @@ The current directory is assumed to be the project's root otherwise." ("C-c C-S-t" . org-todo-force-notes)) :config (progn - (unbind-key "C-c C-f" org-mode-map) (setq helm-org-headings-fontify t) ;; Enable appointment notifications. @@ -1521,8 +1520,6 @@ window is active in the perspective." (add-hook 'emacs-lisp-mode-hook (lambda () (setq indent-tabs-mode nil) (setq show-trailing-whitespace t))) -(bind-key "C-c C-f" 'find-function) -(bind-key "C-c C-v" 'find-variable) (define-key lisp-mode-shared-map (kbd "C-c C-c") 'eval-defun) (define-key lisp-mode-shared-map (kbd "C-c C-r") 'eval-and-replace) (define-key lisp-mode-shared-map (kbd "C-c o r") 'up-list-region)