You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All of the other operators (i.e, g, y, c, and v) work just fine. However, I have remapped d to "_d because I do not want to copy what I delete to my clipboard, and the operator window will not appear unless the mapping is removed.
wk.setup({
operators= {
gc="Comments",
['"_d'] ="Delete (blackhole)",
-- ['d'] = "Delete (blackhole 2)" -- I tried both here
},
})
I was not able to directly get d to trigger the operator popup window. I was able to get the key sequence that is being bound to d to show the popup window. That is, whenever I would press "_d manually, the popup window would appear and it would not copy it to my clipboard.
I'm unsure how to change this behavior.
The text was updated successfully, but these errors were encountered:
All of the other operators (i.e,
g
,y
,c
, andv
) work just fine. However, I have remappedd
to"_d
because I do not want to copy what I delete to my clipboard, and the operator window will not appear unless the mapping is removed.I've tried the following:
.setup()
callI was not able to directly get
d
to trigger the operator popup window. I was able to get the key sequence that is being bound tod
to show the popup window. That is, whenever I would press"_d
manually, the popup window would appear and it would not copy it to my clipboard.I'm unsure how to change this behavior.
The text was updated successfully, but these errors were encountered: