Sorry, here I used ellipsis to just skip the extra text :) I meant, for example, "All Uppercase": ```lua 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.