Function: dired-other-tab

dired-other-tab is an autoloaded, interactive and byte-compiled function defined in dired.el.gz.

Signature

(dired-other-tab DIRNAME &optional SWITCHES)

Documentation

"Edit" directory DIRNAME. Like dired but make a new tab.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/dired.el.gz
;;;###autoload (keymap-set tab-prefix-map "d" #'dired-other-tab)
;;;###autoload
(defun dired-other-tab (dirname &optional switches)
  "\"Edit\" directory DIRNAME.  Like `dired' but make a new tab."
  (interactive (dired-read-dir-and-switches "in other tab "))
  (switch-to-buffer-other-tab (dired-noselect dirname switches)))