Function: speedbar-up-directory
speedbar-up-directory is an interactive and byte-compiled function
defined in speedbar.el.gz.
Signature
(speedbar-up-directory)
Documentation
Keyboard accelerator for moving the default directory up one.
Assumes that the current buffer is the speedbar buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/speedbar.el.gz
(defun speedbar-up-directory ()
"Keyboard accelerator for moving the default directory up one.
Assumes that the current buffer is the speedbar buffer."
(interactive)
(setq default-directory (expand-file-name (concat default-directory "../")))
(speedbar-update-contents))