Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sublime Text - Remove plugin's keymap shortcuts

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

like image 680
sweeds Avatar asked Sep 11 '26 00:09

sweeds


1 Answers

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.

like image 192
sweeds Avatar answered Sep 13 '26 14:09

sweeds



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!