[NTG-context] Re: ConTeXt support for Nova text editor (MacOS)

2023-12-08 Thread Paul Mazaitis
On 16 Nov 2023, at 13:02, Alexandre Christe wrote: > Hi Paul, > > Actually in the assets on Github it’s indicating a Typst extensions, not a > ConTeXt one... Oof, my apologies; the release binary on GitHub has been fixed! > BR. -Paul -Off to be mortified, now... > A. Christe

[NTG-context] Re: mtx-synctex.lua question

2023-12-08 Thread Jim
On Fri, Dec 8, 2023 at 21:18 (+0100), Hans Hagen wrote: > On 12/8/2023 7:51 PM, Jim wrote: >> Hi Hans (and anyone else interested in synctex), >> 282a284,285 >>> locate( 0, s) if fi ~= 0 then tl = s ; goto done end >>> locate( 0,-s) if fi ~= 0 then tl = s ; goto done end >> and then wrote the

[NTG-context] Re: mtx-synctex.lua question

2023-12-08 Thread Hans Hagen
On 12/8/2023 7:51 PM, Jim wrote: Hi Hans (and anyone else interested in synctex), 282a284,285 locate( 0, s) if fi ~= 0 then tl = s ; goto done end locate( 0,-s) if fi ~= 0 then tl = s ; goto done end and then wrote the following quick and dirty shell

[NTG-context] Re: mtx-synctex.lua question

2023-12-08 Thread Jim
Hi Hans (and anyone else interested in synctex), On Fri, Dec 8, 2023 at 11:38 (-0400), Jim wrote: > Hi Hans, > On Fri, Dec 8, 2023 at 15:03 (+0100), Hans Hagen wrote: >> On 12/7/2023 7:23 PM, Jim wrote: >>> Hi, >>> In mtx-synctex.lua, inside >>> local function

[NTG-context] Re: mtx-synctex.lua question

2023-12-08 Thread Jim
Hi Hans, On Fri, Dec 8, 2023 at 15:03 (+0100), Hans Hagen wrote: > On 12/7/2023 7:23 PM, Jim wrote: >> Hi, >> In mtx-synctex.lua, inside >> local function findlocation(filename,page,xpos,ypos,tolerance) >> there is the following code: >> for s=1,tolerance,max(tolerance//10,1) do >> locate( s,

[NTG-context] Re: mtx-synctex.lua question

2023-12-08 Thread Hans Hagen via ntg-context
On 12/7/2023 7:23 PM, Jim wrote: Hi, In mtx-synctex.lua, inside local function findlocation(filename,page,xpos,ypos,tolerance) there is the following code: for s=1,tolerance,max(tolerance//10,1) do locate( s, 0) if fi ~= 0 then tl = s ; goto done