Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add font zooming actions #48838

Closed
alexdima opened this issue Apr 27, 2018 · 0 comments
Closed

Add font zooming actions #48838

alexdima opened this issue Apr 27, 2018 · 0 comments
Assignees
Labels
feature-request Request for new features or functionality verification-needed Verification of issue is requested verified Verification succeeded
Milestone

Comments

@alexdima
Copy link
Member

alexdima commented Apr 27, 2018

To replace the default full window zoom in, the following keybindings can be used:

  • OSX:
{ "key": "cmd+numpad_add",        "command": "editor.action.fontZoomIn" },
{ "key": "shift+cmd+=",           "command": "editor.action.fontZoomIn" },
{ "key": "cmd+=",                 "command": "editor.action.fontZoomIn" },
{ "key": "cmd+numpad_subtract",   "command": "editor.action.fontZoomOut" },
{ "key": "shift+cmd+-",           "command": "editor.action.fontZoomOut" },
{ "key": "cmd+-",                 "command": "editor.action.fontZoomOut" },
{ "key": "cmd+numpad0",           "command": "editor.action.fontZoomReset" },
{ "key": "cmd+0",                 "command": "editor.action.fontZoomReset" },
  • Windows and Linux:
{ "key": "ctrl+numpad_add",        "command": "editor.action.fontZoomIn" },
{ "key": "shift+ctrl+=",           "command": "editor.action.fontZoomIn" },
{ "key": "ctrl+=",                 "command": "editor.action.fontZoomIn" },
{ "key": "ctrl+numpad_subtract",   "command": "editor.action.fontZoomOut" },
{ "key": "shift+ctrl+-",           "command": "editor.action.fontZoomOut" },
{ "key": "ctrl+-",                 "command": "editor.action.fontZoomOut" },
{ "key": "ctrl+numpad0",           "command": "editor.action.fontZoomReset" },
{ "key": "ctrl+0",                 "command": "editor.action.fontZoomReset" },
@alexdima alexdima added feature-request Request for new features or functionality editor labels Apr 27, 2018
@alexdima alexdima added this to the May 2018 milestone Apr 27, 2018
@alexdima alexdima self-assigned this Apr 27, 2018
alexdima added a commit that referenced this issue Apr 27, 2018
@alexdima alexdima added the verification-needed Verification of issue is requested label May 29, 2018
@jrieken jrieken added the verified Verification succeeded label May 30, 2018
@vscodebot vscodebot bot locked and limited conversation to collaborators Jun 11, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
feature-request Request for new features or functionality verification-needed Verification of issue is requested verified Verification succeeded
Projects
None yet
Development

No branches or pull requests

2 participants