Re: [O] [bug] Parts of code blocks are highlighted as Org comments
Hi Sébastien, "Sebastien Vauban" writes: > If you have such a Sh code block in any Org document, you'll see that the 4th > line will be highlighted as an Org comment from the "# != 2"... This is now fixed, thanks. -- Bastien
[O] [bug] Parts of code blocks are highlighted as Org comments
Hello, If you have such a Sh code block in any Org document, you'll see that the 4th line will be highlighted as an Org comment from the "# != 2"... #+begin_src sh # swap FILE1 FILE2 swap () { if [[ $# != 2 ]]; then return 1 fi tmpfile=/tmp/.swapper.$$.$RANDOM mv -f $1 $tm