forked from blastura/dot-emacs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
my-cedet.el
32 lines (24 loc) · 1.13 KB
/
my-cedet.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
;; CEDET
;; Enabling various SEMANTIC minor modes. See semantic/INSTALL for more ideas.
;; Select one of the following:
;; * This enables the database and idle reparse engines
(semantic-load-enable-minimum-features)
;; * This enables some tools useful for coding, such as summary mode
;; imenu support, and the semantic navigator
;; (semantic-load-enable-code-helpers)
;; * This enables even more coding tools such as the nascent intellisense mode
;; decoration mode, and stickyfunc mode (plus regular code helpers)
;; (semantic-load-enable-guady-code-helpers)
;; * This turns on which-func support (Plus all other code helpers)
;;(semantic-load-enable-excessive-code-helpers)
;; This turns on modes that aid in grammar writing and semantic tool
;; development. It does not enable any other features such as code
;; helpers above.
;; (semantic-load-enable-semantic-debugging-helpers)
;; Problems with generics in java
(global-semantic-show-unmatched-syntax-mode -1)
;; Remove senator-hippie-expand-hook from
;; hippie-expand-try-functions-list
(set-variable 'senator-minor-mode-hook nil)
;;(senator-hippie-expand-hook nil)
(provide 'my-cedet)