"Fraga, Eric" <e.fr...@ucl.ac.uk> writes:

> On Thursday,  2 May 2019 at 21:11, Lawrence Bottorff wrote:
>> Well, at least there is a sane explanation. Ironically, I was also about to
>> complain about all my loose ">"s getting flagged. So they are related!
>> Would there be a way to make an exception for < and > inside of actual code
>> forms? Languages need them for "greater than" and "less than".
>
> I have the following in my org mode customization:
>
>     (modify-syntax-entry ?< ".")
>     (modify-syntax-entry ?> ".")
>
> as many of my org files have these symbols not as paren but as operators.

I'll follow your lead and add the lines

        (add-hook
         'org-mode-hook
         (lambda ()
            (modify-syntax-entry ?< ".")
            (modify-syntax-entry ?> ".")))

to my config.


Thanks,
-- 
Marco 


Reply via email to