From mboxrd@z Thu Jan 1 00:00:00 1970 From: khi at users.sourceforge.jp (khi at users.sourceforge.jp) Date: Wed, 13 Jul 2005 18:59:43 +0900 Subject: [Howm-eng 5] Re: Elisp hyperlinks for howm, part 1 Message-ID: Hi. At Wed, 13 Jul 2005 00:58:34 -0300, eduardoochs at fastmail.fm wrote: > (find-filehowm "MainTasks") > (find-filehowm "MainTasks" "RcircTasks") Do you mean something like this? (defun find-filehowm (file &optional title) (find-file (expand-file-name file howm-directory)) (howm-mode 1) (when title (goto-char (point-min)) (re-search-forward (concat "^= +" (regexp-quote title) "$")))) -- khi at users.sourceforge.jp