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

Removed #341 that Ctrl-Shift-F12 results in command 'workbench.action… #346

Merged
merged 1 commit into from
Apr 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ ctrl+space | ctrl+space | Basic code completion (the name of any class, method o
ctrl+shift+space | ctrl+shift+space | Smart code completion (filters the list of methods and variables by expected type) | N/A
enter | enter | Choose Lookup Item | ✅
tab | tab | Choose Lookup Item Replace | ✅
enter | enter | Next Template Variable or Finish In-Place Refactoring | ✅
ctrl+shift+enter | cmd+shift+enter | Complete statement | ✅
ctrl+p | cmd+p | Parameter info (within method call arguments) | ✅
ctrl+q | ctrl+j | Quick documentation lookup | ✅
Expand Down Expand Up @@ -265,7 +264,7 @@ alt+numpad9 | cmd+numpad9 | Close corresponding tool window (Git) | ✅
ctrl+s | cmd+s | Save all | ✅
ctrl+alt+y | cmd+alt+y | Synchronize | N/A
N/A | ctrl+cmd+f | Toggle full screen mode | ✅
ctrl+shift+f12 | cmd+shift+f12 | Toggle maximizing editor |
ctrl+shift+f12 | cmd+shift+f12 | Toggle maximizing editor | N/A
alt+shift+f | alt+shift+f | Add to Favorites | N/A
alt+shift+i | alt+shift+i | Inspect current file with current profile | N/A
ctrl+\` | ctrl+\` | Quick switch current scheme | ✅
Expand Down
8 changes: 1 addition & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1417,13 +1417,7 @@
"command": "workbench.action.toggleFullScreen",
"intellij": "Toggle full screen mode"
},
{
"key": "ctrl+shift+f12",
"mac": "cmd+shift+f12",
"command": "workbench.action.maximizeEditor",
"intellij": "Toggle maximizing editor",
"todo": "toggle not working"
},



{
Expand Down
6 changes: 4 additions & 2 deletions src/package-with-comment.json
Original file line number Diff line number Diff line change
Expand Up @@ -1845,13 +1845,15 @@
"command": "workbench.action.toggleFullScreen",
"intellij": "Toggle full screen mode"
},
/*
{
"key": "ctrl+shift+f12",
"mac": "cmd+shift+f12",
"command": "workbench.action.maximizeEditor",
"command": "",
"intellij": "Toggle maximizing editor",
"todo": "toggle not working"
"todo": "N/A"
},
*/
/*
{
"key": "alt+shift+f",
Expand Down