mappings: dont copy deleted text
This commit is contained in:
parent
41e059ac2b
commit
d360405447
2 changed files with 12 additions and 1 deletions
|
@ -6,6 +6,17 @@ local function map(mode, lhs, rhs, opts)
|
|||
vim.api.nvim_set_keymap(mode, lhs, rhs, options)
|
||||
end
|
||||
|
||||
local opt = {}
|
||||
|
||||
-- dont copy any deleted text , this is disabled by default so uncomment the below mappings if you want them!
|
||||
--[[
|
||||
|
||||
map("n", "dd", [=[ "_dd ]=], opt)
|
||||
map("v", "dd", [=[ "_dd ]=], opt)
|
||||
map("v", "x", [=[ "_x ]=], opt)
|
||||
|
||||
]]
|
||||
|
||||
-- copy any selected text with pressing y
|
||||
map("", "<leader>c", '"+y')
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue