aboutsummaryrefslogtreecommitdiff
path: root/plugins/togglesnakecamel.lua
diff options
context:
space:
mode:
authorGuldoman <giulio.lettieri@gmail.com>2022-11-02 08:10:57 +0100
committerGitHub <noreply@github.com>2022-11-02 08:10:57 +0100
commit9bf5649c7df6bbd746956e9a96b616f61a59fa9b (patch)
tree725e2d12dc826f8ebe73807a705371cb4c5af4d9 /plugins/togglesnakecamel.lua
parent49139e03398c9d0ecb347267a4882a4eb3f7ee23 (diff)
downloadlite-xl-plugins-9bf5649c7df6bbd746956e9a96b616f61a59fa9b.tar.gz
lite-xl-plugins-9bf5649c7df6bbd746956e9a96b616f61a59fa9b.zip
Use new `command.add` syntax (#136)
Diffstat (limited to 'plugins/togglesnakecamel.lua')
-rw-r--r--plugins/togglesnakecamel.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/togglesnakecamel.lua b/plugins/togglesnakecamel.lua
index c055933..fd1da13 100644
--- a/plugins/togglesnakecamel.lua
+++ b/plugins/togglesnakecamel.lua
@@ -21,8 +21,8 @@ end
command.add("core.docview", {
- ["toggle-snake-camel:toggle"] = function()
- core.active_view.doc:replace(function(text)
+ ["toggle-snake-camel:toggle"] = function(dv)
+ dv.doc:replace(function(text)
return text:gsub("[%w][%w%d_]*", toggle)
end)
end,