Variable: semantic-ia-sb-key-map

semantic-ia-sb-key-map is a variable defined in ia-sb.el.gz.

Value

Large value
<down-mouse-3>              dframe-popup-kludge
<follow-link>               mouse-face
<mode-line> <down-mouse-1>  dframe-popup-kludge
<mode-line> <mouse-2>       dframe-mouse-hscroll
<motion-state> :            evil-ex
<motion-state> RET          speedbar-edit-line
<motion-state> h            backward-char
<motion-state> i            speedbar-item-info
<motion-state> j            speedbar-next
<motion-state> k            speedbar-prev
<motion-state> l            forward-char
<motion-state> o            speedbar-toggle-line-expansion
<motion-state> r            speedbar-refresh
<motion-state> u            speedbar-up-directory
<mouse-2>                   dframe-click
<mouse-movement>            dframe-track-mouse
C-<down-mouse-1>            dframe-hack-buffer-menu
C-M-n                       speedbar-forward-list
C-M-p                       speedbar-backward-list
C-x b                       dframe-switch-buffer-attached-frame
H                           #<anonymous-function>
I                           semantic-ia-sb-show-tag-info
M-n                         speedbar-restricted-next
M-p                         speedbar-restricted-prev
Q                           delete-frame
RET                         speedbar-edit-line
S-<mouse-2>                 dframe-power-click(var)/dframe-power-click(fun)
SPC..~                      undefined
b                           #<anonymous-function>
f                           #<anonymous-function>
g                           speedbar-refresh
h                           #<anonymous-function>
n                           speedbar-next
p                           speedbar-prev
q                           dframe-close-frame
r                           #<anonymous-function>
t                           speedbar-toggle-updates

Documentation

Keymap used when in semantic analysis display mode.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/ia-sb.el.gz
;;; Code:
(defvar semantic-ia-sb-key-map
  (let ((map (speedbar-make-specialized-keymap)))
    ;; Basic features.
    (define-key map "\C-m" #'speedbar-edit-line)
    (define-key map "I"    #'semantic-ia-sb-show-tag-info)
    map)
  "Keymap used when in semantic analysis display mode.")