]> git.eshelyaron.com Git - emacs.git/commitdiff
(shell-mode-hook): Set comint-completion-addsuffix
authorRichard M. Stallman <rms@gnu.org>
Wed, 5 Jun 1996 18:25:05 +0000 (18:25 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 5 Jun 1996 18:25:05 +0000 (18:25 +0000)
so that the directory suffix is backslash and the file suffix is space.

lisp/w32-fns.el

index 9b6046b4f13dd040919a9f3f107ceaa4d1e405f0..e649101c5a9627f9928a63885640c937b7dabf60 100644 (file)
 ;; for executing its command line argument (from simple.el).
 (setq shell-command-switch "/c")
 
+;; For appending suffixes to directories and files in shell completions.
+(add-hook 'shell-mode-hook 
+         '(lambda () (setq comint-completion-addsuffix '("\\" . " "))))
+
 ;; Use ";" instead of ":" as a path separator (from files.el).
 (setq path-separator ";")