Disable global semantic-mode key bindings
Those collide with Org's bindings for setting item prioties.
This commit is contained in:
parent
e95f868c9d
commit
16d5dd4847
11
init.el
11
init.el
@ -1454,9 +1454,14 @@
|
|||||||
|
|
||||||
(use-package semantic
|
(use-package semantic
|
||||||
:commands (semantic-mode)
|
:commands (semantic-mode)
|
||||||
:init (setq semantic-default-submodes
|
:init (progn
|
||||||
'(global-semantic-idle-scheduler-mode
|
(setq semantic-default-submodes
|
||||||
global-semanticdb-minor-mode))
|
'(global-semantic-idle-scheduler-mode
|
||||||
|
global-semanticdb-minor-mode))
|
||||||
|
|
||||||
|
;; Disable global key bindings as we are not using them;
|
||||||
|
;; cf. https://emacs.stackexchange.com/questions/32389/how-do-you-disable-all-keybinding-for-a-package
|
||||||
|
(setq semantic-mode-map (make-sparse-keymap)))
|
||||||
:config (progn
|
:config (progn
|
||||||
(require 'semantic/ia)
|
(require 'semantic/ia)
|
||||||
(require 'semantic/bovine/el)
|
(require 'semantic/bovine/el)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user