I started using Sublime Text a few weeks ago and I find it irritating that the text zooms in or out when I'm trying to type something or navigate. This is because the base of my two thumbs come in contact with the touch pad. Moreover, there isn't a Ctrl+* or Ctrl+0 shortcut to reset the font size. (Font size and zoom mean the same thing in Sublime Text.)
I couldn't find anything in the Preferences file about this. The Key Bindings file contains
{ "keys": ["ctrl++"], "command": "increase_font_size" },
{ "keys": ["ctrl+="], "command": "increase_font_size" },
{ "keys": ["ctrl+keypad_plus"], "command": "increase_font_size" },
{ "keys": ["ctrl+-"], "command": "decrease_font_size" },
{ "keys": ["ctrl+keypad_minus"], "command": "decrease_font_size" },
{ "keys": ["ctrl+equals"], "command": "increase_font_size" },
{ "keys": ["ctrl+shift+equals"], "command": "decrease_font_size" },
{ "keys": ["ctrl+shift+keypad_plus"], "command": "decrease_font_size" },