Variable: dired-enable-globstar-in-shell

dired-enable-globstar-in-shell is a variable defined in dired.el.gz.

Value

(("ksh" . "set -G")
 ("bash" . "shopt -s globstar"))

Documentation

Alist of (SHELL . COMMAND), where COMMAND enables globstar in SHELL.

If dired-maybe-use-globstar is non-nil, then dired-insert-directory checks this alist to enable globstar in the shell subprocess.

View in manual

Probably introduced at or before Emacs version 28.1.

Source Code

;; Defined in /usr/src/emacs/lisp/dired.el.gz
(defconst dired-enable-globstar-in-shell
  '(("ksh" . "set -G")
    ("bash" . "shopt -s globstar"))
  "Alist of (SHELL . COMMAND), where COMMAND enables globstar in SHELL.
If `dired-maybe-use-globstar' is non-nil, then `dired-insert-directory'
checks this alist to enable globstar in the shell subprocess.")