Remove alexott hook from cedet

This commit is contained in:
laurensmiers 2016-04-02 15:48:56 +02:00
parent 9e9d136cd8
commit 96bacc322c

12
custom/setup-cedet.el Executable file → Normal file
View file

@ -7,13 +7,13 @@
(semantic-mode 1)
(defun alexott/cedet-hook ()
(local-set-key "\C-c\C-j" 'semantic-ia-fast-jump)
(local-set-key "\C-c\C-s" 'semantic-ia-show-summary))
;; (defun alexott/cedet-hook ()
;; (local-set-key "\C-c\C-j" 'semantic-ia-fast-jump)
;; (local-set-key "\C-c\C-s" 'semantic-ia-show-summary))
(add-hook 'c-mode-common-hook 'alexott/cedet-hook)
(add-hook 'c-mode-hook 'alexott/cedet-hook)
(add-hook 'c++-mode-hook 'alexott/cedet-hook)
;; (add-hook 'c-mode-common-hook 'alexott/cedet-hook)
;; (add-hook 'c-mode-hook 'alexott/cedet-hook)
;; (add-hook 'c++-mode-hook 'alexott/cedet-hook)
;; Enable EDE only in C/C++
(require 'ede)