feat: 🔧 ner master area window count shortcuts

This commit is contained in:
Mikhail Zolotukhin 2021-09-25 13:44:50 +03:00
parent 4bd9a76c78
commit 3b2152e811
2 changed files with 4 additions and 4 deletions

View File

@ -82,8 +82,8 @@ section](TWEAKS.md).
| Decrease Window Width | Meta + Ctrl + H |
| Decrease Window Height | Meta + Ctrl + K |
| | |
| Increase Master Area Window Count | Meta + I |
| Decrease Master Area Window Count | Meta + D |
| Increase Master Area Window Count | Meta + ] |
| Decrease Master Area Window Count | Meta + [ |
| Increase Master Area Size | _None_ |
| Decrease Master Area Size | _None_ |
| Push Window Into Master Area | Meta + Return |

View File

@ -319,7 +319,7 @@ export class IncreaseMasterAreaWindowCount
engine,
"increase_master_win_count",
"Increase Master Area Window Count",
"Meta+I"
"Meta+]"
);
}
@ -337,7 +337,7 @@ export class DecreaseMasterAreaWindowCount
engine,
"decrease_master_win_count",
"Decrease Master Area Window Count",
"Meta+D"
"Meta+["
);
}