Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
7b4c6503
Commit
7b4c6503
authored
Apr 03, 1995
by
Simon Marshall
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Set comint-file-name-quote-list to new shell-file-name-quote-list.
parent
8e583b5d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
8 deletions
+19
-8
lisp/shell.el
lisp/shell.el
+19
-8
No files found.
lisp/shell.el
View file @
7b4c6503
...
...
@@ -83,14 +83,15 @@
;;; comint-mode-hook is the comint mode hook.
;;; Shell Mode Commands:
;;; shell Fires up the shell process
;;; tab comint-dynamic-complete Complete filename/command/history
;;; m-? comint-dynamic-list-filename-completions List completions in help buffer
;;; m-c-f shell-forward-command Forward a shell command
;;; m-c-b shell-backward-command Backward a shell command
;;; dirs Resync the buffer's dir stack
;;; dirtrack-toggle Turn dir tracking on/off
;;; comint-strip-ctrl-m Remove trailing ^Ms from output
;;; shell Fires up the shell process
;;; tab comint-dynamic-complete Complete filename/command/history
;;; m-? comint-dynamic-list-filename-completions
;;; List completions in help buffer
;;; m-c-f shell-forward-command Forward a shell command
;;; m-c-b shell-backward-command Backward a shell command
;;; dirs Resync the buffer's dir stack
;;; dirtrack-toggle Turn dir tracking on/off
;;; comint-strip-ctrl-m Remove trailing ^Ms from output
;;;
;;; The shell mode hook is shell-mode-hook
;;; comint-prompt-regexp is initialised to shell-prompt-pattern, for backwards
...
...
@@ -134,6 +135,15 @@ shell buffer. The default is (?\\| ?& ?< ?> ?\\( ?\\) ?\\;).
This is a fine thing to set in your `.emacs' file."
)
(
defvar
shell-file-name-quote-list
(
append
shell-delimiter-argument-list
'
(
?\
?\*
?\!
?\"
?\'
?\`
))
"List of characters to quote when in a file name.
This variable is used to initialize `comint-file-name-quote-list' in the
shell buffer. The default is (?\ ?\* ?\! ?\" ?\' ?\`) plus characters
in `shell-delimiter-argument-list'.
This is a fine thing to set in your `.emacs' file."
)
(
defvar
shell-dynamic-complete-functions
'
(
comint-replace-by-expanded-history
shell-dynamic-complete-environment-variable
...
...
@@ -307,6 +317,7 @@ buffer."
(
setq
comint-prompt-regexp
shell-prompt-pattern
)
(
setq
comint-completion-fignore
shell-completion-fignore
)
(
setq
comint-delimiter-argument-list
shell-delimiter-argument-list
)
(
setq
comint-file-name-quote-list
shell-file-name-quote-list
)
(
setq
comint-dynamic-complete-functions
shell-dynamic-complete-functions
)
(
make-local-variable
'paragraph-start
)
(
setq
paragraph-start
comint-prompt-regexp
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment