From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kin Cho Newsgroups: gmane.emacs.help Subject: Re: Preloading Command/Parameter Recall in .emacs? Date: 28 Jul 2003 16:19:03 -0700 Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: <7izniy1bq0.fsf@neoscale.com> References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1059434520 14327 80.91.224.249 (28 Jul 2003 23:22:00 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 28 Jul 2003 23:22:00 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Jul 29 01:21:58 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19hHJW-0003iu-00 for ; Tue, 29 Jul 2003 01:21:58 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19hHIl-0006Jb-Ti for geh-help-gnu-emacs@m.gmane.org; Mon, 28 Jul 2003 19:21:11 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!fu-berlin.de!uni-berlin.de!12.24.46.66!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 19 Original-NNTP-Posting-Host: 12.24.46.66 Original-X-Trace: news.uni-berlin.de 1059434345 22053036 12.24.46.66 (16 [151019]) User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 Original-Xref: shelby.stanford.edu gnu.emacs.help:115514 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:11432 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:11432 > I'm particularly intersted in the find file command (C-x C-f). filecache is quite good for this purpose. From filecache.el's commentary: ;; (eval-after-load ;; "filecache" ;; '(my-file-cache-initialize)) ;; ;; (defun my-file-cache-initialize () ;; (interactive) ;; (message "Loading file cache...") ;; (file-cache-add-directory-using-find "~/projects") ;; (file-cache-add-directory-list load-path) ;; (file-cache-add-directory "~/") ;; (file-cache-add-file-list (list "~/foo/bar" "~/baz/bar")) ;; )) -kin