Resetting font size shortcut for Sublime Text 3

后端 未结 5 2038
再見小時候
再見小時候 2020-12-31 03:41

I love working with Sublime Text, but one of its features annoys me sometimes which is \"the accidental zoom in\". Whenever that happens it breaks the momentum

5条回答
  •  鱼传尺愫
    2020-12-31 04:25

    However, there isn't a keyboard shortcut for resetting the zoom/font size. Normally this would be super + 0(aka cmd + 0) in most apps, but Sublime Text doesn't give you this by default.

    To get this feature you need to add the following to your keyboard bindings (found under Preferences -> Key Bindings)

      { "keys": ["super+0"], "command": "reset_font_size" }
    

    Courtesy: coderwall.com

提交回复
热议问题