Jeremy Penner
cb5132f393
subrepo: subdir: "vendor/lite-plugins" merged: "de4227d" upstream: origin: "https://github.com/rxi/lite-plugins" branch: "master" commit: "de4227d" git-subrepo: version: "0.4.2" origin: "https://github.com/ingydotnet/git-subrepo" commit: "65fde50"
12 lines
254 B
Lua
12 lines
254 B
Lua
local core = require "core"
|
|
local command = require "core.command"
|
|
|
|
command.add("core.docview", {
|
|
["titleize:titleize"] = function()
|
|
core.active_view.doc:replace(function(text)
|
|
return text:gsub("%f[%w](%w)", string.upper)
|
|
end)
|
|
end,
|
|
})
|
|
|