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
7e90bcf5
Commit
7e90bcf5
authored
Nov 10, 1996
by
Richard M. Stallman
Browse files
(dired-jump): Never turn omitting *on*.
Refresh the line *before* turning omitting off.
parent
9a656d19
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
lisp/dired-x.el
lisp/dired-x.el
+6
-5
No files found.
lisp/dired-x.el
View file @
7e90bcf5
...
...
@@ -425,14 +425,15 @@ buffer and try again."
(
dired
dir
))
(
if
file
(
or
(
dired-goto-file
file
)
;; Toggle omitting, if necessary, and try again.
(
progn
(
dired-omit-toggle
t
)
(
dired-goto-file
file
))
;; refresh and try again
(
progn
(
dired-insert-subdir
(
file-name-directory
file
))
(
dired-goto-file
file
)))))))
(
dired-goto-file
file
))
;; Toggle omitting, if it is on, and try again.
(
if
dired-omit-files-p
(
progn
(
dired-omit-toggle
)
(
dired-goto-file
file
))))))))
(
defun
dired-jump-other-window
()
"Like \\[dired-jump] (dired-jump) but in other window."
...
...
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