diff options
| author | Thomas Schneider <qsx@qsx.re> | 2019-06-23 17:46:07 +0200 |
|---|---|---|
| committer | Thomas Schneider <qsx@qsx.re> | 2019-06-23 17:46:07 +0200 |
| commit | 2c8c0ced07672c59b3bed24b72a8431b556bf91e (patch) | |
| tree | 0b9128c809129a9d29298e64222495330093710f | |
| parent | bc68131f0f66081adf96737fd729988e0373c1e2 (diff) | |
Emacs: Enable semantic-mode and add srefactor
| -rw-r--r-- | dot.emacs.d/init.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el index 05c7424..3b8262b 100644 --- a/dot.emacs.d/init.el +++ b/dot.emacs.d/init.el @@ -82,6 +82,11 @@ (make-local-variable company-backends) (add-to-list 'company-backends 'company-jedi)))) +(semantic-mode 1) +(use-package srefactor + :bind (:map c-mode-map + ("M-RET" . #'srefactor-refactor-at-point))) + (use-package mercurial :bind-keymap ("C-c H" . hg-global-map)) |
