feat(wezterm): add copy & paste

This commit is contained in:
Price Hiller 2022-07-25 14:02:40 -05:00
parent 20b1eaf6b8
commit 3c9a164ef6

View File

@ -65,6 +65,10 @@ return {
-- NOTE: Quick bindings for in terminal use
{ key = "w", mods = "LEADER", action = { SendString = "wgrep\x0D" } },
{ key = "t", mods = "LEADER", action = { SendString = "fd --color=always | fzf\x0D" } },
-- NOTE: Copy & Paste
{ key = "v", mods = "LEADER", action = wezterm.action.PasteFrom("Clipboard") },
{ key = "c", mods = "LEADER", action = wezterm.action.CopyTo("Clipboard") },
},
key_tables = {},
}