all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Kevin Rodgers <ihs_4664@yahoo.com>
Subject: Re: command line shortcut to (dired "zz/yy*")
Date: Wed, 23 Nov 2005 13:28:08 -0700	[thread overview]
Message-ID: <dm2jcs$r0m$1@sea.gmane.org> (raw)
In-Reply-To: <87y83fz4sd.fsf@jidanni.org>

Dan Jacobson wrote:
 > Maybe
 > $ emacs zz/yy\*
 > should act like (dired "zz/yy*" nil) instead of current "new file"
 > action. Hmmm, there are pros and cons and maybe this is no big deal.

"Emacs is the extensible, customizable, self-documenting real-time
display editor."

There are at least a couple ways you can accomplish that:

1. Start Emacs like this: emacs --eval '(dired "zz/yy*")'

2. Put this in your .emacs:

(add-hook 'find-file-not-found-hooks
           (lambda ()
             ;; see find-file-noselect:
             (if (and find-file-wildcards
                      (not (string-match "\\`/:" buffer-file-name))
                      (string-match "[[*?]" buffer-file-name))
                 (progn
                   (dired buffer-file-name)
                   t))))

But if you aren't even sure that you want this feature, why are you
posting to <bug-gnu-emacs@gnu.org>?

-- 
Kevin Rodgers

      reply	other threads:[~2005-11-23 20:28 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-11-23 16:51 command line shortcut to (dired "zz/yy*") Dan Jacobson
2005-11-23 20:28 ` Kevin Rodgers [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='dm2jcs$r0m$1@sea.gmane.org' \
    --to=ihs_4664@yahoo.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.