stef-levesque / vscode-multiclip

Multiple clipboards for VSCode
MIT License
46 stars 12 forks source link

it does not work with vim plugin #11

Open stephencheng opened 7 years ago

stephencheng commented 7 years ago

with vim plugin enabled, it will not work.

please can you fix this.

Great plugin!

stef-levesque commented 7 years ago

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
nancym commented 7 years ago

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")

noelzubin commented 4 years ago

Add these settings to vscode settings

    "vim.handleKeys": {
        "<C-c>": false,
        "<C-v>": false,
    }