Skip to content

Commit

Permalink
Add #168 that text size zoom
Browse files Browse the repository at this point in the history
  • Loading branch information
kasecato committed Feb 17, 2024
1 parent 04fdb63 commit 25caa00
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ alt+shift+j | ctrl+shift+g | Unselect Occurrence | ✅
shift+alt+down | shift+alt+down | Move Line Down | ✅
shift+alt+up | shift+alt+up | Move Line Up | ✅
shift+alt+insert | shift+cmd+8 | Column Selection Mode | ✅
shift+alt+. | shift+ctrl+. | Increase Font Size in All Editors | ✅
shift+alt+, | shift+ctrl+, | Decrease Font Size in All Editors | ✅

### Search/Replace

Expand Down
14 changes: 14 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -591,6 +591,20 @@
"command": "editor.action.toggleColumnSelection",
"intellij": "Column Selection Mode"
},
{
"key": "shift+alt+[Period]",
"mac": "shift+ctrl+[Period]",
"command": "editor.action.fontZoomIn",
"when": "editorTextFocus",
"intellij": "Increase Font Size in All Editors"
},
{
"key": "shift+alt+[Comma]",
"mac": "shift+ctrl+[Comma]",
"command": "editor.action.fontZoomOut",
"when": "editorTextFocus",
"intellij": "Decrease Font Size in All Editors"
},

{
"key": "shift shift",
Expand Down
14 changes: 14 additions & 0 deletions src/package-with-comment.json
Original file line number Diff line number Diff line change
Expand Up @@ -723,6 +723,20 @@
"command": "editor.action.toggleColumnSelection",
"intellij": "Column Selection Mode"
},
{
"key": "shift+alt+[Period]",
"mac": "shift+ctrl+[Period]",
"command": "editor.action.fontZoomIn",
"when": "editorTextFocus",
"intellij": "Increase Font Size in All Editors"
},
{
"key": "shift+alt+[Comma]",
"mac": "shift+ctrl+[Comma]",
"command": "editor.action.fontZoomOut",
"when": "editorTextFocus",
"intellij": "Decrease Font Size in All Editors"
},
/*---------------------------------------------------------------*\
* Search/Replace
\*---------------------------------------------------------------*/
Expand Down

0 comments on commit 25caa00

Please sign in to comment.