Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
f01fd03b
Commit
f01fd03b
authored
Jul 10, 2000
by
Miles Bader
Browse files
(dired-mode-map): Bind `w' to dired-show-file-type.
(dired-show-file-type): Add autoload.
parent
1fc7fb2b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
lisp/dired.el
lisp/dired.el
+8
-1
No files found.
lisp/dired.el
View file @
f01fd03b
;;; dired.el --- directory-browsing commands
;; Copyright (C) 1985, 86, 92, 93, 94, 95, 96, 1997 Free Software Foundation, Inc.
;; Copyright (C) 1985, 86, 92, 93, 94, 95, 96, 1997
, 2000
Free Software Foundation, Inc.
;; Author: Sebastian Kremer <sk@thp.uni-koeln.de>
;; Maintainer: FSF
...
...
@@ -929,6 +929,7 @@ If DIRNAME is already in a dired buffer, that buffer is used without refresh."
(
define-key
map
"d"
'dired-flag-file-deletion
)
(
define-key
map
"e"
'dired-find-file
)
(
define-key
map
"f"
'dired-find-file
)
(
define-key
map
"w"
'dired-show-file-type
)
(
define-key
map
"\C-m"
'dired-advertised-find-file
)
(
define-key
map
"g"
'revert-buffer
)
(
define-key
map
"h"
'describe-mode
)
...
...
@@ -2845,6 +2846,12 @@ Use \\[dired-hide-all] to (un)hide all directories."
If
there
is
already
something
hidden,
make
everything
visible
again.
Use
\\[dired-hide-subdir]
to
(
un
)
hide
a
particular
subdirectory.
"
t)
(autoload 'dired-show-file-type "
dired-aux
"
"
Print
the
type
of
FILE,
according
to
the
`
file
'
command.
If
FILE
is
a
symbolic
link
and
the
optional
argument
DEREF-SYMLINKS
is
true
then
the
type
of
the
file
linked
to
by
FILE
is
printed
instead.
"
t)
(if (eq system-type 'vax-vms)
(load "
dired-vms
"
))
...
...
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