mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-25 14:01:03 +00:00
in-and-out
quickly navigate in and out of surrounding characters like quotes and parenthesis with Ctrl+ENTER
This commit is contained in:
parent
491a9c630b
commit
36819227a1
1 changed files with 12 additions and 0 deletions
12
lua/plugins/in-and-out.lua
Normal file
12
lua/plugins/in-and-out.lua
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
return {
|
||||
"ysmb-wtsg/in-and-out.nvim",
|
||||
keys = {
|
||||
{
|
||||
"<C-CR>",
|
||||
function()
|
||||
require("in-and-out").in_and_out()
|
||||
end,
|
||||
mode = "i",
|
||||
},
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue