vscode-multiclip icon indicating copy to clipboard operation
vscode-multiclip copied to clipboard

it does not work with vim plugin

Open stephencheng opened this issue 7 years ago • 3 comments

with vim plugin enabled, it will not work.

please can you fix this.

Great plugin!

stephencheng avatar Mar 20 '17 06:03 stephencheng

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

stef-levesque avatar Mar 20 '17 17:03 stef-levesque

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

nancym avatar May 11 '17 17:05 nancym

Add these settings to vscode settings

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

noelzubin avatar Nov 18 '19 06:11 noelzubin