Xref: utzoo gnu.emacs.help:2071 comp.emacs:10727 Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!sdd.hp.com!zaphod.mps.ohio-state.edu!pacific.mps.ohio-state.edu!linac!att!ucbvax!tut.cis.ohio-state.edu!unreplyable!garbage From: gildea@EXPO.LCS.MIT.EDU (Stephen Gildea) Newsgroups: gnu.emacs.help,comp.emacs Subject: Re: file completion in mh-e subfolders Message-ID: <9105171424.AA10095@alex.lcs.mit.edu> Date: 17 May 91 14:24:38 GMT Sender: daemon@tut.cis.ohio-state.edu Followup-To: gnu.emacs.help Organization: X Consortium, MIT Laboratory for Computer Science Lines: 24 I recently discovered that I can have subfolders of folders. My problem is that I don't have file completion for subfolders as I do for the top level folders. Can anyone tell me how to make this work? Put this line in your .emacs file: (setq mh-recursive-folders t) Also, the function "my-visit-folder" that you define is just mh-rmail with an argument. For example, if you have mh-rmail on C-x r as I do, then C-u C-x r eliminates the need for the extra function. Or, if you really don't want to type the third keystroke, you can shorten the definition to this: (defun my-visit-folder () "Scan an MH mailbox without first incorporating new mail. (interactive) (require 'mh-e) (mh-rmail t)) Note that the "interactive" form always comes first. < Stephen MIT X Consortium