aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/dired.el
Commit message (Collapse)AuthorAgeFilesLines
* (dired-font-lock-keywords): Use regexp-opt.Stefan Monnier2002-09-161-20/+22
| | | | | (dired-move-to-filename): Better message when we fail to find the file. (dired-sort-toggle): Minor optimization.
* (dired-move-to-filename): Fix previous change.Markus Rost2002-09-151-1/+2
|
* (dired-use-ls-dired): New variable.Richard M. Stallman2002-09-151-182/+202
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (dired-directory): Document the rules better. (dired-insert-headerline): Function deleted. (dired-revert): Pass no args to dired-readin. (dired-move-to-filename): First try using dired-filename property. (dired-move-to-end-of-filename): Likewise. (dired-why): Try to show the start of this page of warnings. (dired-log): Insert the buffer name at start of page, not end. (dired-log-summary): If just one failure, explain it in echo area. (dired-internal-noselect): Always set dired-directory, when buffer is not new. Pass dir-or-list, not dirname, to dired-mode. Call dired-readin with no args. Don't call dired-after-readin-hook here. (dired-find-buffer-nocreate): Expand dirname. Expand the dir from dired-directory to compare with dirname. (dired-readin): Take no args. Get the directory from dired-directory. Run dired-before-reading hook inside save-excursion. Run dired-after-readin-hook here. Don't make undo entries at all. Call dired-readin-insert with no args. Don't change indentation here. Don't insert headerline here. (dired-readin-insert): Take no args. Get dir and file-list from dired-directory. Call dired-insert-directory the new way. Don't insert "wildcard" info here. (dired-insert-directory): New arg FILE-LIST. First arg now DIR, always just the directory. This function fully handles setting up the buffer text: update indentation, insert headerline and "wildcard" info. Pass --dired arg if appropriate; put info in dired-filename props. Don't expand file names here.
* (defgroup dired): Use `files' as parent.Richard M. Stallman2002-09-011-7/+14
| | | | (dired-get-filename): Ignore handler if it has safe-magic prop.
* Add comment for last change.Andreas Schwab2002-08-021-0/+1
|
* Hide disabling of dired-find-alternate-file behindAndreas Schwab2002-07-311-1/+1
| | | | autoload-cookie.
* (dired-view-file): Quote file name for dired-run-shell-command.Andreas Schwab2002-06-291-2/+3
|
* Delete changes not supposed to be installed yet.Richard M. Stallman2002-06-261-166/+159
|
* (dired-find-alternate-file): Mark as disabled.Richard M. Stallman2002-06-261-159/+167
|
* (dired-do-shell-command): Doc fix in autoload.Richard M. Stallman2002-06-031-9/+24
|
* (dired-view-command-alist): Change :version attribute to a string.Markus Rost2002-05-201-1/+1
|
* (dired-mouse-find-file-other-window):Richard M. Stallman2002-04-231-6/+11
| | | | Handle events that move out of the window.
* (dired-view-command-alist): New variable.Richard M. Stallman2002-04-101-3/+26
| | | | (dired-view-file): Use external viewers for some files names.
* (dired-get-marked-files): New arg FILTER allows selection of some files.Richard M. Stallman2002-03-291-8/+18
|
* (dired-toggle-marks): Renamed from dired-do-toggle. Bindings changed.Richard M. Stallman2002-03-281-6/+5
|
* Comment change.Richard M. Stallman2002-03-211-1/+1
|
* (dired-readin): Clear out undo list.Richard M. Stallman2002-03-141-3/+28
| | | | | | | (dired-fun-in-all-buffers): Definition moved from dired-aux.el. (dired-delete-entry): New function. (dired-internal-do-deletions): Use dired-fun-in-all-buffers and dired-delete-entry, to update this buffer (and others).
* (dired-get-filename): Add /: when appropriateRichard M. Stallman2002-02-061-2/+13
| | | | to avoid taking a local name as remote.
* (dired-load-hook, dired-mode-hook)Eli Zaretskii2002-02-041-8/+16
| | | | (dired-before-readin-hook, dired-after-readin-hook): Defcustom.
* Comment change.Richard M. Stallman2002-01-131-0/+1
|
* (dired-copy-filename-as-kill): Call kill-append if following a kill command.Richard M. Stallman2002-01-071-1/+3
|
* (dired-free-space-program, dired-free-space-args):Eli Zaretskii2001-12-211-0/+5
| | | | Aliases for back-compatibility.
* Doc fix.Pavel Janík2001-12-201-1/+1
|
* (dired-free-space-program): Variable deleted.Richard M. Stallman2001-12-181-49/+1
| | | | | (dired-free-space-args): Variable deleted. (dired-insert-directory): Don't try to determine free space.
* (dired-copy-filename-as-kill): Moved from dired-x.el.Richard M. Stallman2001-12-171-0/+30
| | | | (dired-mode-map): Bind w to dired-copy-filename-as-kill.
* Converted backquote to the new style.Sam Steingold2001-11-271-20/+20
|
* (dired-listing-switches): Mention in the doc stringEli Zaretskii2001-11-201-1/+4
| | | | that some switches are not supported by ls-lisp.el
* (dired-undo): Display a message to explainRichard M. Stallman2001-11-151-1/+3
| | | | that this does not undo file system changes.
* Many trivial doc fixes.Richard M. Stallman2001-11-121-29/+34
| | | | | | | (dired-get-file-for-visit): New function. (dired-find-alternate-file, dired-mouse-find-file-other-window): (dired-view-file, dired-find-file-other-window, dired-display-file): (dired-find-file): Use dired-get-file-for-visit.
* (dired-move-to-filename-regexp):Paul Eggert2001-11-071-23/+16
| | | | | | | | | | Do not distinguish between ASCII letters and non-ASCII characters. Don't allow comma except in the form "month day, year". Don't allow space between month name and comma. Clean up the code that checks for trailing period, comma, and space. Remove now-obsolete comments, and add more commentary about Japanese dates. Always gobble up trailing spaces, instead of doing it only sometimes.
* (dired-build-subdir-alist): Accept optional arg SWITCHES.Eli Zaretskii2001-09-211-11/+14
|
* (dired-move-to-filename-regexp): Allow one digit in theEli Zaretskii2001-09-181-2/+3
| | | | | | numeric month value, and allow the Kanji character after the it to be missing (happens with ls-lisp's output on Japanese versions of MS-Windows).
* Add Keywords header.Gerd Moellmann2001-08-291-0/+1
|
* (dired-mode-map): Bind `y' to dired-show-file-typeGerd Moellmann2001-08-281-1/+1
| | | | instread of `w' which is already in use.
* (dired-insert-set-properties): Fix invalid mouse-faceGerd Moellmann2001-07-161-2/+3
| | | | property.
* (dired-get-filename): A file name starting with ~Richard M. Stallman2001-06-261-0/+3
| | | | is not absolute in this context.
* (dired-mark-pop-up): Fix last change.Eli Zaretskii2001-06-181-1/+2
|
* (dired-insert-set-properties): Add help-echo to mouse-highlighted text.Eli Zaretskii2001-06-171-6/+8
| | | | (dired-mark-pop-up): Remove help-echo property from the file name.
* (dired-diff): Doc fix.Eli Zaretskii2001-05-031-1/+2
|
* (dired-move-to-filename-regexp): Support file sizes inEli Zaretskii2001-04-041-3/+11
| | | | | | ``human-readable'' format produced by GNU `ls'. (dired-move-to-filename-regexp): Recognize ISO format dates. From Paul Eggert <[email protected]>.
* Revert last change.Dave Love2001-01-261-37/+49
|
* use replace-regexps-in-string instead of dired- and gs-replace-in-stringSam Steingold2001-01-241-48/+37
| | | | which are removed
* (dired-insert-directory): If file-system-info fails,Eli Zaretskii2001-01-141-3/+7
| | | | remove the " free " part, but don't signal an error.
* (dired-move-to-filename-regexp): Fix previous change.Kenichi Handa2000-12-211-1/+1
|
* (dired-move-to-filename-regexp): Fixed for the caseKenichi Handa2000-12-131-1/+2
| | | | that a Japanese character is not appended after day and year.
* (dired-insert-directory): If file-system-info isEli Zaretskii2000-12-071-18/+24
| | | | fboundp, call it instead of invoking dired-free-space-program.
* (dired-get-filename): Return filename verbatim if LOCALP is `verbatim'.Miles Bader2000-11-271-1/+4
|
* (dired-between-files): Add `^. find' as an alternativeGerd Moellmann2000-11-071-1/+1
| | | | to the regular expression, for find-dired.
* (dired-insert-directory): Do not let errors signalled byJason Rumney2000-10-191-15/+17
| | | | attempt to run dired-free-space-program prevent dired from working.
* (dired-mark-pop-up): Turn comment into docstring. Use with-current-buffer.Stefan Monnier2000-10-041-11/+10
|