File: proper-case.lua

package info (click to toggle)
geany-plugins 0.19-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 6,864 kB
  • ctags: 3,059
  • sloc: ansic: 30,059; sh: 10,145; makefile: 531; python: 523
file content (25 lines) | stat: -rw-r--r-- 408 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--[[
  Convert the document text or selection to "Proper Case"
  e.g. "john doe" becomes "John Doe"
--]]


function proper_case(s)
  local s=string.gsub(string.lower(s),"^(%w)", string.upper)
  return string.gsub(s,"([^%w]%w)", string.upper)
end



local s=geany.selection()

if (s)
then
  if ( s ~= "" )
  then
    geany.selection(proper_case(s))
  else
    geany.text(proper_case(geany.text()))
  end
end