Question

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

Était-ce utile?

La solution

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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top