Last active
March 7, 2022 13:44
-
-
Save vonNiklasson/d67ff19aa3c0318d41475adc57457910 to your computer and use it in GitHub Desktop.
Disable scroll zoom in Sublime 3, by Hugh Perkins from https://superuser.com/a/1121238
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat <<EOF>~/.config/sublime-text-3/Packages/User/"Default (Linux).sublime-mousemap" | |
[ | |
// Change font size with ctrl+scroll wheel | |
{ "button": "scroll_down", "modifiers": ["ctrl"], "command": "null" }, | |
{ "button": "scroll_up", "modifiers": ["ctrl"], "command": "null" } | |
] | |
EOF |
Glad to hear @han8909227, you're welcome :) If you're a member on superuser.com, make sure to thank Hugh Perkins for the code.
Thank you for this! Came up in a google search just now & is exactly what I needed!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This works ! Thank you