diff options
Diffstat (limited to 'lua/pets/commands.lua')
| -rw-r--r-- | lua/pets/commands.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/pets/commands.lua b/lua/pets/commands.lua index 8124cbc..a211d2d 100644 --- a/lua/pets/commands.lua +++ b/lua/pets/commands.lua @@ -1,9 +1,9 @@ local pets = require("pets") vim.api.nvim_create_user_command("Pets", function() - pets.show() + pets.show() end, {}) -- use nargs = 1 to accept arguments vim.api.nvim_create_user_command("PetsCloseAll", function() - pets.closeAll() + pets.closeAll() end, {}) |