From 980dd9d1f552d7afefc90ae900418f463ff830d5 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Mon, 3 Jan 2022 21:26:45 -0800 Subject: [PATCH] Update format for argwrap binding --- neovim/lua/plugins.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neovim/lua/plugins.lua b/neovim/lua/plugins.lua index f6c60e2..aae92f4 100644 --- a/neovim/lua/plugins.lua +++ b/neovim/lua/plugins.lua @@ -108,7 +108,7 @@ return require("packer").startup({ use({ "FooSoft/vim-argwrap", config = function() - vim.api.nvim_set_keymap("n", "a", ":ArgWrap", { silent = true, noremap = true }) + vim.api.nvim_set_keymap("n", "a", "ArgWrap", { silent = true, noremap = true }) end, })