unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: michael-franzese@gmx.com
To: michael-franzese@gmx.com
Cc: Help Gnu Emacs <help-gnu-emacs@gnu.org>
Subject: Re: Minor mode for colouring plain tex lowercase greek letters
Date: Mon, 11 Jan 2021 20:36:41 +0100	[thread overview]
Message-ID: <trinity-ca260f08-8b41-418e-874b-610920cd5c60-1610393800998@3c-app-mailcom-bs13> (raw)
In-Reply-To: <trinity-c19f2e3a-e4b4-48e2-a918-a2537a9d391f-1610356227849@3c-app-mailcom-bs13>


Have put the following code te highlight greek letters using a minor mode
for texinfo-mode and the plani tex colouring commands \alpha \beta \gamma
are not being coloured.


(defun insert-ptex ()
  (interactive)
  (insert "ptex"))

(defvar ptex-mode-map
  (let ((map (make-keymap)))
    (define-key map (kbd "C-c t") 'insert-ptex)
    map)
  "Key map for use when variable `ptex-mode' is non-nil.")

(defvar ptex-mode-hook nil
  "Hook called when variable `ptex-mode' is non-nil.")

(define-minor-mode ptex-mode
  "Minor mode for colouring plain tex keywords."
  :init-value nil
  :global nil
  :lighter " ptex"
  :keymap ptex-mode-map
  (run-hooks 'ptex-mode-hook))

(add-hook 'texinfo-mode-hook 'ptex-mode)

(defface colour-greek-category
  '((default :inherit bold)
    (((class color) (min-colors 88) (background light))
     :foreground "#00FFFF")
    (((class color) (min-colors 88) (background dark))
     :foreground "#00FFFF")
    (t :inherit font-lock-builtin-face))
  "Face for header category entry.")

(defconst ptex-greek-keywords
  '(("\\\\\\<\\(alpha\\|beta\\|gamma\\)\\>"
     (1 'colour-greek-category)))
  "Rules to apply font-lock highlighting.")

(defun ptex-assign-font-greek-keywords ()
  "Font-lock setup for `ptex-greek-keywords'."
  (font-lock-flush (point-min) (point-max))
  (if ptex-mode
      (font-lock-add-keywords nil ptex-greek-keywords t)
    (font-lock-remove-keywords nil ptex-greek-keywords))
  (font-lock-flush (point-min) (point-max)))

 (add-hook 'texinfo-mode-hook #'ptex-assign-font-greek-keywords)

(provide 'ptex-mode)





> Sent: Monday, January 11, 2021 at 9:10 PM
> From: michael-franzese@gmx.com
> To: "Help Gnu Emacs" <help-gnu-emacs@gnu.org>
> Subject: Minor mode for colouring plain tex lowercase greek letters
>
> Am trying to write a minor made to highlight tex keywords.  I am starting
> with the lowercase greek letters: \alpha, \beta, \gamma, \delta, \epsilon,
> \zeta, \eta, \theta, \iota, \kappa, \lambda, \mu, \nu, \xi.
>
> Do not know how I can set the lowercase greek letters to some colour.
>
> I would have to assign a face to each regexp group rather than defining my own faces.
> Reuse the font-lock faces that one can find on M-x find-library RET faces RET.
>
>
>



      reply	other threads:[~2021-01-11 19:36 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-11  9:10 Minor mode for colouring plain tex lowercase greek letters michael-franzese
2021-01-11 19:36 ` michael-franzese [this message]

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

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=trinity-ca260f08-8b41-418e-874b-610920cd5c60-1610393800998@3c-app-mailcom-bs13 \
    --to=michael-franzese@gmx.com \
    --cc=help-gnu-emacs@gnu.org \
    /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.
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).