forked from bkchr/spacemacs-cmake-ide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
keybindings.el
36 lines (35 loc) · 1.19 KB
/
keybindings.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
33
34
35
(dolist (mode '(c-mode c++-mode))
(evil-leader/set-key-for-mode mode
"g ." 'rtags-find-symbol-at-point
"g ," 'rtags-find-references-at-point
"g v" 'rtags-find-virtuals-at-point
"g V" 'rtags-print-enum-value-at-point
"g /" 'rtags-find-all-references-at-point
"g Y" 'rtags-cycle-overlays-on-screen
"g >" 'rtags-find-symbol
"g <" 'rtags-find-references
"g [" 'rtags-location-stack-back
"g ]" 'rtags-location-stack-forward
"g D" 'rtags-diagnostics
"g G" 'rtags-guess-function-at-point
"g p" 'rtags-set-current-project
"g P" 'rtags-print-dependencies
"g e" 'rtags-reparse-file
"g E" 'rtags-preprocess-file
"g R" 'rtags-rename-symbol
"g M" 'rtags-symbol-info
"g S" 'rtags-display-summary
"g O" 'rtags-goto-offset
"g ;" 'rtags-find-file
"g F" 'rtags-fixit
"g L" 'rtags-copy-and-print-current-location
"g X" 'rtags-fix-fixit-at-point
"g B" 'rtags-show-rtags-buffer
"g I" 'rtags-imenu
"g T" 'rtags-taglist
"g h" 'rtags-print-class-hierarchy
"g a" 'rtags-print-source-arguments
"b" 'cmake-ide-compile
"s" 'projectile-find-other-file
"r" 'srefactor-refactor-at-point
"f" 'semantic-ia-fast-jump))