Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
5answers
1k views

How do I stop emacs dired mode from opening so many buffers?

When I use dired mode to browse around and find a file I want to open in Emacs, dired opens a new buffer for each directory I visit when looking for the file each time I select a directory with Enter, ...
12
votes
5answers
1k views

How do I create an empty file in emacs?

How can I create an empty file from emacs, ideally from within a dired buffer? For example, I've just opened a Python module in dired mode, created a new directory, opened that in dired, and now need ...
10
votes
3answers
2k views

In Emacs dired, how to find/visit multiple files?

If I have multiple files marked, how do I find/visit all those marked files in emacs, beside running dired-find-file on each of them? Is there a build-in command, or do I need some extra lisp code?
8
votes
2answers
570 views

is there an emacs tool to show a directory structure as a tree?

I am aware of Speedbar (I prefer the structure in the same frame as the rest of my work), and dired shows too much information. I'm after something like the svn-status tree representation. Is there ...
6
votes
4answers
569 views

Cutomizing dired

I just came across this dired mode screen at Wikipedia. I am looking into those customizations. Regarding colors, I guess just specifying the correct faces will do, but how do I get dired to show ...
5
votes
2answers
460 views

Emacs dired: too much information

I'm trying to use Emacs and everything is fine, but the information about every file in my directory is too comprehensive. How can I tell it to show only file name (and maybe filesize in human ...
5
votes
2answers
214 views

Open some directories recursively in Dired

I want to show a directory in Dired with some sub-directories opened recursively (as if I passed "R" option for them). Is it possible to do this in Emacs? Any ideas how to implement this easily in ...
4
votes
2answers
92 views

Emacs as Finder/Explorer — copy files

I often want to copy files from one half (C-x 2) to the other of emacs, with different dired buffers in both halves. The obvious way is to mark the files in one window, go to the other, move to the ...
4
votes
5answers
256 views

Open dired and select the file associated with the previous buffer?

Let's say I am editing blah.txt with Emacs and I decide to open dired to rename the file blah.txt. When I press C-x d RET (or C-x C-f RET), a dired buffer will show up to display the content of the ...
4
votes
3answers
556 views

Single most useful example of using dired (Emacs)

What is your single most useful example of using dired mode in Emacs? Any nice tricks? Please one example per answer.
3
votes
1answer
94 views

emacs dired-mode: How to “exit” and end up in a shell in the current directory?

On Mac OS I can use the terminal, write "cd ", and then drag & drop folders from Finder to the terminal. I then obtain something like "cd /Users/..." which allows me to quickly change to the ...
3
votes
3answers
310 views

Emacs find-grep-dired then automatically isearch-forward on given regexp

I commonly do find-grep-dired to find an expression in a project directory. That gives me a nice dired view of all the files that contain that expression. But my next step is invariably to open one of ...
3
votes
2answers
117 views

Where did dired-omit-toggle disappear in Emacs 23.2?

The challenge of upgrading from Emacs 21.2 to 23.2 continues... In my .emacs I have the very convenient: (global-set-key (quote [f4]) (quote dired-omit-toggle)) It used to work since Emacs 18... ...
3
votes
2answers
2k views

How do I uncompress/unzip within Emacs

I would like to run unzip (or even zip) within dired or a dired-like buffer. Is there anything like this? I would like something similar as in the Nautilus file manager: i.e., selecting files and then ...
2
votes
1answer
39 views

How do I disable find-name-dired's default -iname option?

I wanted to run a query-replace-regexp across multiple files in emacs, and found this post explaining how to do it. When I tried following the directions, I got an error after entering the file ...
2
votes
4answers
106 views

Emacs filesets: how to run other (elisp, not shell) commands?

There are 5 Elisp commands that can be run on an Emacs fileset, plus the ability to run any shell command. What about all the other Emacs commands? Just to give one example, it would be nice to be ...
2
votes
2answers
167 views

copy paste various files using dired on emacs while using ido.el

I'm using emacs with dired, (require 'dired-details) (dired-details-install) and ido, (setq ido-enable-flex-matching t) (setq ido-everywhere t) (ido-mode 1) (setq ido-use-filename-at-point ...
2
votes
3answers
472 views

Different color themes per mode in Emacs

How can I ask Emacs to automatically use a different color theme (e.g. using the Elisp ColorTheme package) depending on the mode of the buffer? Some color-themes work great when editing code, but not ...
2
votes
2answers
322 views

How to customize dired's display

How do I make Dired display its files using an arbitrary function or set of columns? Basically I want to change from: -rw-r--r-- 1 konrad konrad 3847863 Out 18 14:17 ClojureinAction.pdf ...
2
votes
2answers
285 views

dired list files sorted by access time

How can I list the output of this command ls -ltDR `find . -maxdepth 4 -type f -name "*.org"` within dired-buffer. The above command lists all org files sorted by access time. Thanks, ...
2
votes
2answers
61 views

emacs-dired and globalff

How can I pass the output of globalff to emacs-dired. Essentially I am looking for something corresponding to find-name-dired that works with output of globalff.
2
votes
1answer
228 views

How can I highlight different types of file in dired mode in Emacs?

In a nutshell, I want to have different faces for some types of file in dired mode. I don't think it matters, but I am using Aquamacs. The example I will use here is .tex files. If I can do it for ...
2
votes
3answers
210 views

Icons in dired in Emacs (on Mac or Linux)

I'd like to have dired show a little icon next to each file, similar to what you'd see in "list" or "details" view on a graphical file browser. Someone posted a similar question but the only answer ...
2
votes
5answers
577 views

dired mode single window? (emacs)

is there a way to have dired operate in a single window so that when I traverse through directories I don't have n number of dired buffers for the intermediate directories? However - if I start ...
2
votes
2answers
338 views

Emacs Dired rename with alternative tool

In dired you can rename files just by editing the directory listing and then saving it. Is it possible to use use an alternative method for renaming when using dired for renaming? I want to use "svn ...
1
vote
1answer
37 views

How to bind a key to run a shell commmand in dired emacs

When i use dired mode in emacs, I can run a shell command by type !xxx, But how to bind a key to run this command? For example, I want to press O on a file, then dired will run 'cygstart' to open ...
1
vote
2answers
136 views

Multiple asynchronous shell-commands in Emacs-Dired?

Emacs obviously can handle multiple asynchronous sub-processes, otherwise a multi-language programming environment like org-babel, to give an example, wouldn't be possible. However, when I'm in Dired ...
1
vote
5answers
143 views

How can I open files externally?

I want to open a pdf with evince instead of DocView mode. Is there a possibility to open a file with a specific command like 'evince'?
1
vote
2answers
90 views

How do I get Dired to not display certain files?

For instance I'd like it to not display all files that match the pattern *~ EDIT: The below worked: (add-hook 'dired-load-hook (lambda () (load "dired-x") ;; Set dired-x global ...
1
vote
1answer
63 views

name confict in renaming multiple files in wdired mode

In wdired mode, if I try to rename file A to B, and file B to C in one step, the part of changing of A to B may be rejected because it conflicts with the existing file B, and only B to C will be done. ...
1
vote
2answers
345 views

Emacs Dired Behavior

I have used emacs for years and am accustomed to having emacs open a selected file in the same window that dired is executed in. In recent revisions, when dired is executed with say 2 windows open, ...
1
vote
2answers
322 views

Dedicated window for dired mode in Emacs?

I have emacs behaving more or less how I want it to by using this common bit of elisp: (defun toggle-current-window-dedication () (interactive) (let* ((window (selected-window)) ...
1
vote
2answers
187 views

Is there a way to list drive letters in dired?

On windows, how could I open a dired buffer showing all drive letters. When you do C-x d you should always provide a directory, but I want to start at the drive letters level instead of a root ...
1
vote
1answer
107 views

Is it possible to use align-regexp in wdired mode (Emacs)?

Is it possible to use align-regexp in wdired mode (Emacs)? I want to align folder names that contain a space after the first word. So: folder1xxx xxxxx folder2xx xxxxxx folder3xxxx xxxxx where x ...
1
vote
1answer
217 views

function to call same shell command in dired

i'd like to be able to call the same shell command on the marked files in dired without the need for emacs to prompt the command input as the command will always be the same. in particular, the ...
0
votes
1answer
47 views

How to stick Dired-mode buffer to a separate frame in Emacs?

I want files navigation via dired to be made in a separate frame but all files to be open in another frame. So how can I stick dired-mode buffers to a standalone-frame? Thanks. I am interested in ...
0
votes
1answer
80 views

Emacs Tramp unable to open directory at times

Normally I am able to use tramp just fine to edit files and browse through the remote file system through SSH. Though at seemingly random times I would lose the ability to browse remote folders in ...
0
votes
1answer
82 views

Dired Mode : View file

I am running following sequence. Open dired mode with C-x d and select a directory. View a file in that directory with 'v'. Kill that file with C-x k RET. I see that Current buffer is one of ...
0
votes
1answer
59 views

Dired: One confirmation for all selected files and directories

Use-case: Mark for deletion target files and directories at the dired buffer; Execute 'dired-do-flagged-delete' (type 'x'); Result: I'm asked about confirmation for every non-empty directory being ...
0
votes
2answers
150 views

Eshell - is there something like open-eshell-here?

In the Windows Explorer there is a function 'command-prompt-here' that opens a command prompt for the actual directory. Is there something similar for eshell, that enables me to open an eshell from ...
0
votes
1answer
105 views

Prevent Emacs from locking up on large file transfer with dired

I find that when I copy or delete large files with Emacs from dired, (i.e. S-c), Emacs will lock up until the operation is complete. To work-around this I fire an asynchronous shell command 'cp/mv/rm ...
0
votes
3answers
182 views

problem in `delete-directory` with enabled `delete-by-removing-to-trash`

There is a strange behavior of delete-directory function with enabled flag delete-by-removing-to-trash. It deletes files one by one instead of applying move-file-to-trash to the directory. As a result ...
-2
votes
2answers
256 views

How do I hide number of links in dired?

99.9% of the time, I don't care how many links are pointing to a file. How do I get dired (or alternatively, ls) to not display the number of links? For reference, the output of ls -l is something ...