Sublime Forum

Disable middle click paste

#1

Hi,

How can I turn off the middle click paste? Any documentation related to keymap? Thanks

0 Likes

#2
  1. Run the following in the ST console (View -> Show Console) to open the mousemap file for your User package.
window.run_command("open_file", {"file": "$packages/User/Default ($platform).sublime-mousemap"})
  1. Insert the following:
[
	{ "button": "button3", "command": "noop" }
]
  1. Save.
3 Likes