Function: eshell-add-glob-modifier

eshell-add-glob-modifier is a byte-compiled function defined in em-glob.el.gz.

Signature

(eshell-add-glob-modifier)

Documentation

Add eshell-expand-glob to the argument modifier list.

Source Code

;; Defined in /usr/src/emacs/lisp/eshell/em-glob.el.gz
(defun eshell-add-glob-modifier ()
  "Add `eshell-expand-glob' to the argument modifier list."
  (when eshell-glob-splice-results
    (add-hook 'eshell-current-modifiers #'eshell-splice-args 99))
  (add-hook 'eshell-current-modifiers #'eshell-expand-glob))