Variable: filesets-browse-dir-function

filesets-browse-dir-function is a customizable variable defined in filesets.el.gz.

Value

dired

Documentation

A function or command used for browsing directories.

When using an external command, "%s" will be replaced with the directory's name.

Note: You have to manually rebuild the menu if you change this value.

Source Code

;; Defined in /usr/src/emacs/lisp/filesets.el.gz
(defcustom filesets-browse-dir-function #'dired
  "A function or command used for browsing directories.
When using an external command, \"%s\" will be replaced with the
directory's name.

Note: You have to manually rebuild the menu if you change this value."
  :set #'filesets-set-default
  :type '(choice :tag "Function"
		 (const :tag "dired"
			:value dired)
		 (list :tag "Command"
		       :value ("" "%s")
		       (string :tag "Name")
		       (string :tag "Arguments"))
                 (function :tag "Function")))