forked from davidlandry93/spaceros
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeybindings.el
More file actions
31 lines (25 loc) · 777 Bytes
/
keybindings.el
File metadata and controls
31 lines (25 loc) · 777 Bytes
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
(spacemacs/declare-prefix "aR" "ros")
(spacemacs/declare-prefix "aRv" "view")
(spacemacs/set-leader-keys
"aRvh" 'helm-ros
"aRvf" 'find-ros-file
"aRvs" 'helm-ros-services
"aRva" 'helm-ros-actions
"aRvm" 'helm-ros-messages
"aRvl" 'helm-ros-launchfiles
"aRvn" 'helm-ros-rosnode-list)
(spacemacs/set-leader-keys "aRc" 'helm-ros-roscore)
(spacemacs/declare-prefix "aRt" "topic")
(spacemacs/set-leader-keys
"aRtt" 'helm-ros-topics
"aRtl" 'helm-ros-rostopic-list
"aRte" 'helm-ros-rostopic-echo
"aRti" 'helm-ros-rostopic-info
"aRth" 'helm-ros-rostopic-hz)
(spacemacs/declare-prefix "aRr" "run")
(spacemacs/set-leader-keys
"aRrr" 'ros-run
"aRrl" 'ros-launch
"aRrc" 'ros-launch-current
)
(spacemacs/set-leader-keys "aRI" 'helm-ros-invalidate-cache)