how to map :%y+ to yank content of a file #9544
Unanswered
KevinNitroG asked this question in Q&A
Replies: 0 comments
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, currently I'm customing in
keybindings.jsonof vscode to yank content of a file like this... { "key": "space y", "command": "vim.remap", "when": "vim.mode == 'Normal' && vim.mode != 'OperatorPendingMode' && vim.mode != 'SearchInProgressMode' && vim.mode != 'CommandlineInProgress' && (editorTextFocus || !inputFocus)", "args": { "after": [":%y+"] } }, ...But it doesn't work. I have tried to config with vscodevim config but it doesn't work either.
Beta Was this translation helpful? Give feedback.
All reactions