Function: semantic-symref-list-toggle-showing

semantic-symref-list-toggle-showing is an interactive and byte-compiled function defined in list.el.gz.

Signature

(semantic-symref-list-toggle-showing)

Documentation

Toggle showing the contents below the current line.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/symref/list.el.gz
;;; Commands for semantic-symref-results
;;
(defun semantic-symref-list-toggle-showing ()
  "Toggle showing the contents below the current line."
  (interactive)
  (beginning-of-line)
  (when (re-search-forward "\\[[-+]\\]" (line-end-position) t)
    (forward-char -1)
    (push-button)))