[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] Bug: src block face [8.3.1 (8.3.1-56-g17a225-elpaplus @ /Users/c
From: |
Kyle Meyer |
Subject: |
Re: [O] Bug: src block face [8.3.1 (8.3.1-56-g17a225-elpaplus @ /Users/ctanis/.emacs.d/elpa/org-plus-contrib-20150817/)] |
Date: |
Tue, 18 Aug 2015 10:36:12 -0400 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) |
"Tanis, Craig" <address@hidden> writes:
> SRC blocks don't show correct face when a language is specified.
>
> #+begin_src
> correctly shows in 'org-block face
> #+end_src
>
> #+begin_src language
> incorrectly shows in 'default face
> #+end_src
I suspect that in your second block you're using text the would have the
default face in a buffer for that language.
Depending on the value of org-src-fontify-natively, Org will try to
highlight the block according to the language.
So
#+begin_src
(message "yes")
#+end_src
will use the org-block face, but
#+begin_src elisp
(message "yes")
#+end_src
will highlight according to emacs-lisp-mode.
If org-src-fontify-natively is nil, the org-block face will be used for
the second block as well.
--
Kyle