all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "weber" <hugows@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Using a File index
Date: 8 Feb 2007 04:26:12 -0800	[thread overview]
Message-ID: <1170937572.049993.63340@h3g2000cwc.googlegroups.com> (raw)
In-Reply-To: <u8xf9m9m0.fsf@gmail.com>

On 8 fev, 03:44, Mathias Dahl <brakjol...@gmail.com> wrote:
> "HS" <hug...@gmail.com> writes:
> > That's nice, but it's solved now.
>
> How was it solved?

With this code:
(defun indexed-find (file)
  (interactive "MFilename: ")
  (find-file "my_file_index.txt")
  (if (re-search-forward (concat file " = ") nil t 1)
	  (progn
		(setq beg (point))
		(end-of-line)
		(setq end (point))
		(find-file (buffer-substring beg end)))
	  (message "File not found!"))
  (kill-buffer "my_file_index.txt"))

The index file was made with a ruby script, and I update it manually
when there are some new files...
Cheers,
HS

  reply	other threads:[~2007-02-08 12:26 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-02-05 17:13 Using a File index HS
2007-02-06  7:47 ` Kevin Rodgers
     [not found] ` <mailman.4082.1170748050.2155.help-gnu-emacs@gnu.org>
2007-02-06 13:44   ` HS
2007-02-07  9:16     ` Kevin Rodgers
2007-02-08  6:44     ` Mathias Dahl
2007-02-08 12:26       ` weber [this message]
2007-02-09 17:31         ` Mathias Dahl
2007-02-09 17:46           ` weber
2007-02-09 17:53             ` weber
2007-02-09 17:58             ` weber
2007-02-10  8:09               ` Kevin Rodgers

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=1170937572.049993.63340@h3g2000cwc.googlegroups.com \
    --to=hugows@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.