Sorry, here I used ellipsis to just skip the extra text :) I meant, for example, "All Uppercase":

local start, stop = geany.select()
local s = geany.selection()
if (s ~= nil) and (s ~= "") then
  geany.selection(string.upper(s))
  geany.select(start, stop)
end

and so on.


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/4086/comments/11562974@github.com>