* imenu does not list paragraphs
@ 2017-01-16 15:15 Matthias Pfeifer
2017-01-16 18:55 ` Alex Kost
0 siblings, 1 reply; 3+ messages in thread
From: Matthias Pfeifer @ 2017-01-16 15:15 UTC (permalink / raw)
To: help-gnu-emacs
I used to have my init.el file divided into paragraphs by inserting
markers. I have added following code into my init.el:
(make-local-variable 'paragraph-start)
(make-local-variable 'paragraph-separate)
(setq paragraph-start "^;; \\["
paragraph-separate "^;; ]$")
(setq-local imenu-create-index-function
'imenu-default-create-index-function) )
This way I had imenu asking me to which paragraph I want to jump whenever I
invoked it. For some reason it stopped working. I do not know where else I
can look. paragraph-start and paragraph-separate do have the intended
values. Only invoking imenu gives me not my paragraphs as options, but
defun's and defvar's.
Matthias
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: imenu does not list paragraphs
2017-01-16 15:15 imenu does not list paragraphs Matthias Pfeifer
@ 2017-01-16 18:55 ` Alex Kost
2017-01-17 9:35 ` Matthias Pfeifer
0 siblings, 1 reply; 3+ messages in thread
From: Alex Kost @ 2017-01-16 18:55 UTC (permalink / raw)
To: Matthias Pfeifer; +Cc: help-gnu-emacs
Matthias Pfeifer (2017-01-16 16:15 +0100) wrote:
> I used to have my init.el file divided into paragraphs by inserting
> markers. I have added following code into my init.el:
>
> (make-local-variable 'paragraph-start)
> (make-local-variable 'paragraph-separate)
> (setq paragraph-start "^;; \\["
> paragraph-separate "^;; ]$")
> (setq-local imenu-create-index-function
> 'imenu-default-create-index-function) )
>
> This way I had imenu asking me to which paragraph I want to jump whenever I
> invoked it. For some reason it stopped working. I do not know where else I
> can look. paragraph-start and paragraph-separate do have the intended
> values. Only invoking imenu gives me not my paragraphs as options, but
> defun's and defvar's.
I don't see how that could work. AFAIK you need to change
`imenu-generic-expression' variable. I would do it like this:
(defun my-imenu-add-paragraphs ()
(add-to-list 'imenu-generic-expression
(list "Paragraphs" "^;;; \\(.+\\)$" 1)
t))
(add-hook 'emacs-lisp-mode-hook 'my-imenu-add-paragraphs)
Setting those local variables looks redundant to me.
--
Alex
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: imenu does not list paragraphs
2017-01-16 18:55 ` Alex Kost
@ 2017-01-17 9:35 ` Matthias Pfeifer
0 siblings, 0 replies; 3+ messages in thread
From: Matthias Pfeifer @ 2017-01-17 9:35 UTC (permalink / raw)
To: help-gnu-emacs
I confess I was copying code from dubious source.
However it used to work.
Now it stopped working...
imenu-generic-expression works.
Thanks for the hint.
Matthias
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-01-17 9:35 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-16 15:15 imenu does not list paragraphs Matthias Pfeifer
2017-01-16 18:55 ` Alex Kost
2017-01-17 9:35 ` Matthias Pfeifer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).