vscode-multiclip
vscode-multiclip copied to clipboard
Add a History that allows you to choose which items to insert
The extension would be perfect if it had a history of easy access that allows access to all the copied elements and choose which of them to insert, all in a fast and intuitive way. If I had these functions it would be perfect.
The command multiclip List Buffer
displays a list of the recent copies and you can select one. I made a binding for this command by opening the keybindings.json (ctrl+shift+p > Preferences: Keybinding Shortcuts) and added this keybinding, the when
part is the same as the other multiclip commands.
{
"key": "ctrl+shift+alt+v",
"command": "multiclip.list",
"when": "editorTextFocus && editorLangId != 'markdown'"
},