Exe when running a command is also running the piped command afterwards.
Is this expected behavior when previewing with Exe?
This is my lazy config file
return {
"smjonas/live-command.nvim",
main = "live-command",
cmd = {
"Norm",
"Exe"
},
init = function ()
vim.cmd("cnoreabbrev norm norm!")
vim.cmd("cnoreabbrev exe Exe")
end,
keys = {
{"<leader>;", ":Exe \"\"<left>", mode = "n", desc = "Shortcut for Exe"},
{"<leader>;", ":<home>Exe \"<end>norm! \"<left>", mode = "x", desc = "Shortcut for Exe norm! with selection"}
},
opts = {
commands = {
Norm = { cmd = "norm!" },
Exe = { cmd = "exe"},
},
}
}
Exe when running a command is also running the piped command afterwards.
Is this expected behavior when previewing with Exe?
This is my lazy config file