-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathkeybindings.el
More file actions
32 lines (31 loc) · 1.12 KB
/
Copy pathkeybindings.el
File metadata and controls
32 lines (31 loc) · 1.12 KB
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
(dolist (mode '(c-mode c++-mode))
(evil-leader/set-key-for-mode mode
"m g ." 'rtags-find-symbol-at-point
"m g ," 'rtags-find-references-at-point
"m g v" 'rtags-find-virtuals-at-point
"m g V" 'rtags-print-enum-value-at-point
"m g /" 'rtags-find-all-references-at-point
"m g Y" 'rtags-cycle-overlays-on-screen
"m g >" 'rtags-find-symbol
"m g <" 'rtags-find-references
"m g [" 'rtags-location-stack-back
"m g ]" 'rtags-location-stack-forward
"m g D" 'rtags-diagnostics
"m g G" 'rtags-guess-function-at-point
"m g p" 'rtags-set-current-project
"m g P" 'rtags-print-dependencies
"m g e" 'rtags-reparse-file
"m g E" 'rtags-preprocess-file
"m g R" 'rtags-rename-symbol
"m g M" 'rtags-symbol-info
"m g S" 'rtags-display-summary
"m g O" 'rtags-goto-offset
"m g ;" 'rtags-find-file
"m g F" 'rtags-fixit
"m g L" 'rtags-copy-and-print-current-location
"m g X" 'rtags-fix-fixit-at-point
"m g B" 'rtags-show-rtags-buffer
"m g I" 'rtags-imenu
"m g T" 'rtags-taglist
"m g h" 'rtags-print-class-hierarchy
"m g a" 'rtags-print-source-arguments))