Re: Org mode fontification error in # in python and ipython source blocks

2020-11-03 Thread stardiviner
Thanks for noting. :) I added that in my Emacs config now. [stardiviner] GPG key ID: 47C32433 IRC(freeenode): stardiviner Twitter: @numbchild Key fingerprint = 9BAA 92BC CDDD B9EF 3B36 CB99 B8C4 B8E5 47C3 2433 Blog: http://stardiviner.github.io/ On Tue, Nov

Re: Org mode fontification error in # in python and ipython source blocks

2020-11-03 Thread Kyle Meyer
John Kitchin writes: >> (setq python-font-lock-keywords >> (append python-font-lock-keywords >> '(;; this is the full string. >> ;; group 1 is the quote type and a closing quote is matched >> ;; group 2 is the string part >> ( >> ;; "f\\(['\"]\\{1,3\\}\\)\\([^\\1]+?\\)\\1" >> "f\\(['\"]

Re: Org mode fontification error in # in python and ipython source blocks

2020-11-03 Thread John Kitchin
Does anyone see anything wrong with that snippet? All it should do is improve font-lock on Python f-strings, and it used to work fine, but now it doesn't. It isn't real critical for me, so I don't mind commenting it out, but I neither understand why it stopped working! John --

Re: Org mode fontification error in # in python and ipython source blocks

2020-11-03 Thread Sebastian Gimeno
Dear Stardiviner, I used the "scimax" configuration. Scimax's maintainer, John Kitchin, helped me out to find the root cause of the problem, i.e. the following addition to " python-font-lock-keywords": (setq python-font-lock-keywords (append python-font-lock-keywords '(;; this is the f

Re: Org mode fontification error in # in python and ipython source blocks

2020-11-02 Thread stardiviner
I have same problem sometimes in different babel languages. I would like to know what caused this problem too. Can you send me a message after you solved problem? Thanks in advance. :) smile [stardiviner] GPG key ID: 47C32433 IRC(freeenode): stardiviner Twitter:

Re: Org mode fontification error in # in python and ipython source blocks

2020-11-01 Thread Sebastian Gimeno
Hi Jack, I have cloned the git master. Running without configuration ("make vanilla"), emacs correctly fontifies the source block and it also gets exported to HTML. It seems that it is a configuration problem. Sorry for not double checking first! Many thanks for your help! Cheers, Sebastian On

Re: Org mode fontification error in # in python and ipython source blocks

2020-11-01 Thread Sebastian Gimeno
Hi Jack, thanks for replying! The error does not happen using "emacs -q" (built-in package: org 9.3). I haven't tried with the git version yet. i will and let you know. Cheers, Sebastian On Sun, Nov 1, 2020 at 9:19 PM Jack Kamm wrote: > Hi Sebastian -- > > > I am having problems with the font

Re: Org mode fontification error in # in python and ipython source blocks

2020-11-01 Thread Jack Kamm
Hi Sebastian -- > I am having problems with the fontification of python and ipython source > blocks when the code contains curly brackets "{}" (other course blocks are > ok). For instance, the following snippet > > #+BEGIN_SRC python :results drawer > import matplotlib.pyplot as plt > plt.plot([1,

Org mode fontification error in # in python and ipython source blocks

2020-11-01 Thread Sebastian Gimeno
Hi, I am using emacs 27.1 and org-plus-contrib 20201026. I am having problems with the fontification of python and ipython source blocks when the code contains curly brackets "{}" (other course blocks are ok). For instance, the following snippet #+BEGIN_SRC python :results drawer import matplotl