help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Open All FIles in a Directory: How can I tell emacs to do this?


From: Pascal Bourguignon
Subject: Re: Open All FIles in a Directory: How can I tell emacs to do this?
Date: 22 Sep 2003 22:15:48 +0200
User-agent: Gnus/5.09 (Gnus v5.9.0) 21.3.50.pjb1.1

Kevin Rodgers <ihs_4664@yahoo.com> writes:
> emacs *.php *.html
> 
> > Plus this
> > involves exiting and restarting emacs.  I was hoping there would be a
> > more elegant solution.
> 
> The elegant solution is to open the directory in dired, then go from there
> (see Dave Footitt's response): emacs .

I don't use much dired; you could do too:

    M-x server-start RET
    M-x shell RET
    cd $where_you_want
    emacsclient -n [^#]*[^~] RET

or:
    (require 'cl)

    (dolist (f (delete-if 
                 (lambda (path) (not (string-match ".*/[^#/][^/]*[^~/]$" path)))
                 (file-expand-wildcards "/where/you/want/*")))
      (find-file f))

-- 
__Pascal_Bourguignon__
http://www.informatimago.com/
Do not adjust your mind, there is a fault in reality.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]