From: pietru@caramail.com
To: monnier@iro.umontreal.ca
Cc: help-gnu-emacs@gnu.org
Subject: Re: headings for texinfo-mode using outline-minor-mode
Date: Wed, 12 May 2021 07:11:08 +0200 [thread overview]
Message-ID: <trinity-18aa9d0a-c94a-4aa9-8802-03908faff4a9-1620796268285@3c-app-mailcom-bs13> (raw)
In-Reply-To: <jwv8s4lnpww.fsf-monnier+emacs@gnu.org>
Could you help me set my own, as I have some additional ones such as
@uchap, @usec, @usubsec, @usubsubsec.
(defvar gilgamesh-texinfo-hdlevels
'( ("@chapter" . 2)
("@section" . 3)
("@subsection" . 4)
("@subsubsection" . 5)
;; --------------------------------------------------
("@unnumbered" . 2)
("@unnumberedsec" . 3)
("@unnumberedsubsec" . 4)
("@unnumberedsubsubsec" . 5)
;; --------------------------------------------------
("@appendix" . 2)
("@appendixsec" . 3)
("@appendixsubsec" . 4)
("@appendixsubsubsec" . 5)
;; --------------------------------------------------
("majorheading" 2)
;; --------------------------------------------------
("chapheading" 2)
("heading" 3)
("subheading" 4)
("subsubheading" 5)
;; --------------------------------------------------
("@uchap" . 2)
("@usec" . 3)
("@usubsec" . 4)
("@usubsubsec" . 5) ))
(setq-local outline-heading-alist
;; We should merge `outline-heading-alist' and
;; `texinfo-section-list'. But in the mean time, let's
;; just generate one from the other.
(mapcar (lambda (x) (cons (concat "@" (car x)) (cadr x)))
gilgamesh-texinfo-hdlevels))
;;(defun gilgamesh-faddeev-texinfo ()
;; "todo"
;; (add-hook 'texinfo-mode-hook #'gilgamesh-texinfo-hdlevels) )
I do not know whether using "add-hook" is the way to do it.
> Sent: Wednesday, May 12, 2021 at 5:26 AM
> From: "Stefan Monnier via Users list for the GNU Emacs text editor" <help-gnu-emacs@gnu.org>
> To: help-gnu-emacs@gnu.org
> Subject: Re: headings for texinfo-mode using outline-minor-mode
>
> pietru@caramail.com [2021-05-11 18:43:16] wrote:
> > What do headings start with for texinfo-mode, when using outline-minor-mode?
>
> `texinfo-mode` is one of the rare modes which explicitly sets
> `outline-heading-alist`, so you have the answer in there ;-)
>
>
> Stefan
>
>
>
next prev parent reply other threads:[~2021-05-12 5:11 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-11 16:43 headings for texinfo-mode using outline-minor-mode pietru
2021-05-11 17:26 ` Stefan Monnier via Users list for the GNU Emacs text editor
2021-05-12 4:43 ` pietru
2021-05-12 12:34 ` Stefan Monnier
2021-05-12 12:48 ` pietru
2021-05-12 14:04 ` Stefan Monnier
2021-05-12 14:15 ` pietru
2021-05-13 3:00 ` Christopher Dimech
2021-05-12 12:36 ` Jean Louis
2021-05-13 2:50 ` Christopher Dimech
2021-05-13 4:28 ` Stefan Monnier via Users list for the GNU Emacs text editor
2021-05-13 4:46 ` Christopher Dimech
2021-05-13 9:06 ` Robert Thorpe
2021-05-13 9:39 ` Christopher Dimech
2021-05-13 7:20 ` Jean Louis
2021-05-13 7:36 ` Christopher Dimech
2021-05-13 3:57 ` Christopher Dimech
2021-05-12 5:11 ` pietru [this message]
2021-05-12 2:16 ` pietru
2021-05-12 2:39 ` pietru
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=trinity-18aa9d0a-c94a-4aa9-8802-03908faff4a9-1620796268285@3c-app-mailcom-bs13 \
--to=pietru@caramail.com \
--cc=help-gnu-emacs@gnu.org \
--cc=monnier@iro.umontreal.ca \
/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.