emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Nicolas Goaziou <mail@nicolasgoaziou.fr>
To: stardiviner <numbchild@gmail.com>
Cc: org-mode <emacs-orgmode@gnu.org>,
	"Garreau, Alexandre" <galex-713@galex-713.eu>
Subject: Re: Inline code block syntax highlighting absence
Date: Fri, 26 Oct 2018 17:49:36 +0200	[thread overview]
Message-ID: <87ftwsg12n.fsf@nicolasgoaziou.fr> (raw)
In-Reply-To: <877ei6r7fh.fsf@gmail.com> (stardiviner's message of "Thu, 25 Oct 2018 12:12:18 +0800")

Hello,

stardiviner <numbchild@gmail.com> writes:

> I did a search of "font-lock-add-keywords", "begin_src", "src_" etc in
> Org Mode source code, but have not found exact place where fontify
> function are. So I don't know where to modify the source code. Now I put
> my current config here:

[...]

> (font-lock-add-keywords
>  'org-mode
>  '(("\\(src_\\)\\([^[{]+\\)\\(\\[:.*\\]\\)\\({\\)\\([^}]*\\)\\(}\\)"
>     (1 '(:foreground "black" :weight 'normal :height 0.1)) ; src_ part
>     (2 '(:foreground "cyan" :weight 'bold :height 0.8 :box '(:color "light gray"))) ; "lang" part.
>     (3 '(:foreground "#555555" :height 0.7)) ; [:header arguments] part.
>     (4 '(:foreground "#333333")) ; {
>     (5 'org-code) ; "code..." part.
>     (6 '(:foreground "#333333")) ; }
>     ))
>  'append)

The first thing is to define new faces, or re-use existing one, instead
of creating them ad-hoc.

Then you need to create a function like `org-fontify-entities'.

For example:

--8<---------------cut here---------------start------------->8---
(defun org-fontify-inline-code (limit)
  (when (re-search-forward "src_..." limit t)
    ;; here you need to make as sure as possible that you are really
    ;; at some inline code.  You cannot really parse inline source code
    ;; or inline Babel calls with a regexp only.
    (org-remove-flyspell-overlays-in beg end)
    (add-text-properties beg end (list 'font-lock-fontified t 'face ...))
    t))
--8<---------------cut here---------------end--------------->8---

You then register the function above in `org-set-font-lock-defaults.

Do you want to implement this?

Regards,

-- 
Nicolas Goaziou

  parent reply	other threads:[~2018-10-26 15:49 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-10-23 12:13 Inline code block syntax highlighting absence Garreau, Alexandre
2018-10-24  3:47 ` stardiviner
2018-10-24  7:39   ` Nicolas Goaziou
2018-10-25  4:12     ` stardiviner
2018-10-25  7:40       ` Garreau, Alexandre
2018-10-26 15:49       ` Nicolas Goaziou [this message]
2018-10-27  2:57         ` stardiviner
2018-11-24  8:51         ` stardiviner
2018-11-28  8:05           ` [Need Help] I need help, someone can help me debug on this? stardiviner

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.orgmode.org/

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

  git send-email \
    --in-reply-to=87ftwsg12n.fsf@nicolasgoaziou.fr \
    --to=mail@nicolasgoaziou.fr \
    --cc=emacs-orgmode@gnu.org \
    --cc=galex-713@galex-713.eu \
    --cc=numbchild@gmail.com \
    /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 public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

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).