Also
```lua
-- SCI_GETLENGTH
local iL = geany.scintilla(2006, 0, 0)
local n1, n2, n3
n2 = 0
while true do
  -- SCI_INDICATORVALUEAT
  n1 = geany.scintilla(2507, 8, n2)
  if n1 ~= 0 then
    -- SCI_LINEFROMPOSITION
    n3 = geany.scintilla(2166, n1, 0)
    -- SCI_MARKERADD
    geany.scintilla(2043, n3, 1)
    -- SCI_GETLINEENDPOSITION
    n2 = geany.scintilla(2136, n3, 0)
  end
  n2 = n2 + 1
  if n2 >= iL then break end
end
```
didn't work.

-- 
Reply to this email directly or view it on GitHub:
https://github.com/geany/geany/discussions/4602#discussioncomment-17391294
You are receiving this because you are subscribed to this thread.

Message ID: <geany/geany/repo-discussions/4602/comments/[email protected]>

Reply via email to