()
| 766 | } |
| 767 | |
| 768 | function registerBuilderGlobalKeys() { |
| 769 | globalKeyMap.set("Cmd:w", () => { |
| 770 | getApi().closeBuilderWindow(); |
| 771 | return true; |
| 772 | }); |
| 773 | const allKeys = Array.from(globalKeyMap.keys()); |
| 774 | getApi().registerGlobalWebviewKeys(allKeys); |
| 775 | } |
| 776 | |
| 777 | function getAllGlobalKeyBindings(): string[] { |
| 778 | const allKeys = Array.from(globalKeyMap.keys()); |
no test coverage detected