Variable: shell-delimiter-argument-list

shell-delimiter-argument-list is a customizable variable defined in shell.el.gz.

Value

(124 38 60 62 40 41 59)

Documentation

List of characters to recognize as separate arguments.

This variable is used to initialize comint-delimiter-argument-list in the shell buffer. The value may depend on the operating system or shell.

Probably introduced at or before Emacs version 19.20.

Source Code

;; Defined in /usr/src/emacs/lisp/shell.el.gz
(defcustom shell-delimiter-argument-list '(?\| ?& ?< ?> ?\( ?\) ?\;)
  "List of characters to recognize as separate arguments.
This variable is used to initialize `comint-delimiter-argument-list' in the
shell buffer.  The value may depend on the operating system or shell."
  :type '(choice (const nil)
		 (repeat :tag "List of characters" character))
  :group 'shell)