diff --git a/lua/easytables/options.lua b/lua/easytables/options.lua index 1e700eb..edd3113 100644 --- a/lua/easytables/options.lua +++ b/lua/easytables/options.lua @@ -59,14 +59,18 @@ local options = { "n", "", ":JumpLeft", - {} + { + silent = true, + } ) vim.api.nvim_buf_set_keymap( buf, "n", "", ":SwapWithLeftCell", - {} + { + silent = true, + } ) vim.api.nvim_buf_set_keymap( @@ -74,14 +78,18 @@ local options = { "n", "", ":JumpRight", - {} + { + silent = true, + } ) vim.api.nvim_buf_set_keymap( buf, "n", "", ":SwapWithRightCell", - {} + { + silent = true, + } ) vim.api.nvim_buf_set_keymap( @@ -89,14 +97,18 @@ local options = { "n", "", ":JumpUp", - {} + { + silent = true, + } ) vim.api.nvim_buf_set_keymap( buf, "n", "", ":SwapWithUpperCell", - {} + { + silent = true, + } ) vim.api.nvim_buf_set_keymap( @@ -104,14 +116,18 @@ local options = { "n", "", ":JumpDown", - {} + { + silent = true, + } ) vim.api.nvim_buf_set_keymap( buf, "n", "", ":SwapWithLowerCell", - {} + { + silent = true, + } ) vim.api.nvim_buf_set_keymap( @@ -119,14 +135,18 @@ local options = { "n", "", ":JumpToNextCell", - {} + { + silent = true, + } ) vim.api.nvim_buf_set_keymap( buf, "n", "", ":JumpToPreviousCell", - {} + { + silent = true, + } ) vim.api.nvim_buf_set_keymap( @@ -134,28 +154,36 @@ local options = { "n", "", ":SwapWithLeftColumn", - {} + { + silent = true, + } ) vim.api.nvim_buf_set_keymap( buf, "n", "", ":SwapWithRightColumn", - {} + { + silent = true, + } ) vim.api.nvim_buf_set_keymap( buf, "n", "", ":SwapWithUpperRow", - {} + { + silent = true, + } ) vim.api.nvim_buf_set_keymap( buf, "n", "", ":SwapWithLowerRow", - {} + { + silent = true, + } ) end }