vscode-multiclip
vscode-multiclip copied to clipboard
it does not work with vim plugin
with vim plugin enabled, it will not work.
please can you fix this.
Great plugin!
I am not familiar with the VIM plugin, but you might what to re-associate the keyboard shortcuts to better suit your workflow,
Name | Description | Keyboard Shortcuts |
---|---|---|
multiclip.copy | Multiclip Copy | Ctrl+C |
multiclip.cut | Multiclip Cut | Ctrl+X |
multiclip.list | Multiclip List Buffer | Ctrl+Alt+V |
multiclip.paste | Multiclip Paste | Ctrl+Shift+V |
multiclip.regularPaste | Multiclip Regular Paste | Ctrl+V |
multiclip.copyMerge | Multiclip Copy and Merge to Clipboard | Ctrl+Shift+C |
multiclip.cutMerge | Multiclip Cut and Merge to Clipboard | Ctrl+Shift+X |
I'm also trying to get vscode-multiclip to work with VSCodeVim. There are some tips in https://github.com/VSCodeVim/Vim/issues/1414 (titled "multiclip does not work in vim mode")
Add these settings to vscode settings
"vim.handleKeys": {
"<C-c>": false,
"<C-v>": false,
}