In ST3, I want to keep the default key-map for super+alt+v, which is the paste history menu.

However, a plugin that I would like to use overrides those keys in it's default keymap. Can I remove the plugin's shortcut for super+alt+v or the keymap entirely?


This is what I want to keep (from the 'Default (OSX).sublime-keymap')

{ "keys": ["super+option+v"], "command": "paste_from_history" }

The is the perpetrator:

{ "keys": ["super+alt+v"], "command": "text_pastry_insert_text", "args": { "clipboard": true, "separator": "\n" } },

有帮助吗?

解决方案

Turns out the Plugin's User settings will override the Plugin's Default.

So I copied { "keys": ["super+option+v"], "command": "paste_from_history" } from the original Default Sublime keymap into Text Pastry/User keymap and it's back. Thanks @Martin for talking it out with me.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top