summaryrefslogtreecommitdiff
path: root/nvim/lua/commands.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/commands.lua')
-rw-r--r--nvim/lua/commands.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/nvim/lua/commands.lua b/nvim/lua/commands.lua
new file mode 100644
index 0000000..8a987b0
--- /dev/null
+++ b/nvim/lua/commands.lua
@@ -0,0 +1,6 @@
+vim.api.nvim_create_user_command("Lower", function()
+ vim.cmd([[normal! guaw]])
+end, { force = true })
+vim.api.nvim_create_user_command("Upper", function()
+ vim.cmd([[normal! gUaw]])
+end, { force = true })