all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Drew Adams" <drew.adams@oracle.com>
To: "'Norm'" <NormanBauer@gmail.com>, <help-gnu-emacs@gnu.org>
Subject: RE: build a macro that opens a directory and prompts for file name
Date: Fri, 23 Jan 2009 23:16:47 -0800	[thread overview]
Message-ID: <00ac01c97df3$cfcca4f0$0200a8c0@us.oracle.com> (raw)
In-Reply-To: <cf250151-701d-44bd-b029-b6f3e1c21219@b38g2000prf.googlegroups.com>

> > > I have been googleing and reading the docs trying to figure out a
> > > solution to this. I spend the majority of my time working 
> > > in a single directory on a CIFS server and I am always doing a 
> > > C-x C-f \\server\dir\long_sub_dir\subdir\filename
> >
> > > In the spirit of emacs I'd like to automate it so that 
> > > when I do C-co it knows the directory and simply prompts me for
> > > the file to be opened or if I leave it blank and press RET it
> > > lists the directory.
> >
> > I use bookmarks to take me to the directories themselves.
>
> Thanks Chris. That is exactly what I need. Wonderful.

I too use and recommend using bookmarks.

But from your description, all you want is a command that reads a file name in
some predefined directory. You can do that just by binding `default-directory'
to the directory and calling `find-file':

(defun foo ()
  "Visit a file in my favorite directory."
  (interactive)
  (let ((default-directory "/my.server.somewhere:/dir/longsubdir/subdir/"))
    (call-interactively 'find-file)))





  reply	other threads:[~2009-01-24  7:16 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-01-23 15:13 build a macro that opens a directory and prompts for file name Norm
2009-01-23 15:27 ` Chris McMahan
2009-01-23 15:38   ` Norm
2009-01-24  7:16     ` Drew Adams [this message]
     [not found]     ` <mailman.5627.1232781454.26697.help-gnu-emacs@gnu.org>
2009-01-26 10:15       ` Pascal J. Bourguignon
2009-01-26 18:15         ` Drew Adams
     [not found]         ` <mailman.5864.1232993759.26697.help-gnu-emacs@gnu.org>
2009-01-27 10:04           ` Stefan Kamphausen
2009-01-27 10:45             ` roodwriter
2009-01-28  8:09               ` Kevin Rodgers
2009-01-29 13:08 ` Sebastian Tennant

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='00ac01c97df3$cfcca4f0$0200a8c0@us.oracle.com' \
    --to=drew.adams@oracle.com \
    --cc=NormanBauer@gmail.com \
    --cc=help-gnu-emacs@gnu.org \
    /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.