stef-levesque / vscode-multiclip

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

Add a History that allows you to choose which items to insert #27

Open COD3BREAK3R opened 5 years ago

COD3BREAK3R commented 5 years ago

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.

NickBolles commented 5 years ago

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'"
  },