Re: [NTG-context] issue in Lua syntax formatting

2022-06-01 Thread Henning Hraban Ramm via ntg-context

Am 01.06.22 um 02:39 schrieb Max Chernoff:
the formatting of Lua multi-line strings messes up the source 
structure, in the following MWE, the "one" is displayed after "[[":


I can reproduce this. As a workaround, you can insert a non-breaking 
space (U+00A0) immediately after the "[[":


Good idea, but I’d like to avoid invisible tweaks.


You can also use the Scite syntax highlighting:

     \usemodule[scite]


Thank you for the reminder!

Since I need it for the CG journal, I wanted to avoid additional 
dependencies, but the scite module is part of the distribution anyway 
and works as a drop-in replacement.


Hraban
___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___


Re: [NTG-context] issue in Lua syntax formatting

2022-05-31 Thread Max Chernoff via ntg-context
the formatting of Lua multi-line strings messes up the source structure, 
in the following MWE, the "one" is displayed after "[[":


\starttext

\startLUA
words = [[
   one
   two
   three
]]
\stopLUA

\stoptext


I can reproduce this. As a workaround, you can insert a non-breaking 
space (U+00A0) immediately after the "[[":


\starttext

\startLUA
words = [[
one
two
three
]]
\stopLUA

\stoptext

(You can't see the NBSP, but it's there)

You can also use the Scite syntax highlighting:

\usemodule[scite]

\starttext

\startLUA
words = [[
one
two
three
]]
\stopLUA

\stoptext

It produces different (but usually better) output than the default 
highlighter. This module is installed by default with ConTeXt LMTX.


There's also the Vim module:

\usemodule[vim]
\definevimtyping[LUA][syntax=lua]

\starttext

\startLUA
words = [[
one
two
three
]]
\stopLUA

\stoptext

You would need to install this module manually though.

-- Max

___
If your question is of interest to others as well, please add an entry to the 
Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki : http://contextgarden.net
___