Skip to content

Commit

Permalink
fix(vim-sandwich): load vim-sandwich on keys and not file event (#299)
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter authored Jun 21, 2023
1 parent bfb9f9c commit a2d5a45
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion lua/astrocommunity/syntax/vim-sandwich/vim-sandwich.lua
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
return { "machakann/vim-sandwich", event = "User AstroFile" }
return {
"machakann/vim-sandwich",
keys = {
{ "sa", desc = "Add surrounding", mode = { "n", "v" } },
{ "sd", desc = "Delete surrounding" },
{ "sr", desc = "Replace surrounding" },
},
}

0 comments on commit a2d5a45

Please sign in to comment.