-- lua_add {{{ vim.g.sandwich_no_default_key_mappings = true local opt = { silent = true, noremap = false } require("user.utils").keymaps_set({ { mode = { "n", "x", "o" }, lhs = [[sa]], rhs = [[(sandwich-add)]], opts = opt }, { mode = { "n", "x" }, lhs = [[sd]], rhs = [[(sandwich-delete)]], opts = opt }, { mode = { "n", "x" }, lhs = [[sdb]], rhs = [[(sandwich-delete-auto)]], opts = opt }, { mode = { "n", "x" }, lhs = [[sr]], rhs = [[(sandwich-replace)]], opts = opt }, { mode = { "n", "x" }, lhs = [[srb]], rhs = [[(sandwich-replace-auto)]], opts = opt }, }) -- }}}