ADD LINES TO BOTTOM OF DOCUMENT - Cursor at Bottom
For example:

local function GetEmptyLines(sLE, iLE)
  local sR = ""
  for i = 1, iLE do sR = sR .. sLE end
  return sR
end

local aEOL = {"\r\n", "\r", "\n"}
local iEOL = geany.scintilla("SCI_GETEOLMODE")
local sAdd = GetEmptyLines(aEOL[iEOL + 1], 25)

local sTxt = geany.text()
geany.text(sTxt .. sAdd)
geany.select(geany.length())


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <geany/geany/repo-discussions/4091/comments/11664860@github.com>