We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c367624 commit 382d8feCopy full SHA for 382d8fe
src/menu.ts
@@ -89,7 +89,14 @@ if (process.platform === 'darwin') {
89
menuTemplate.unshift({
90
label: '&File',
91
submenu: [
92
- { role: 'close' }
+ {
93
+ // This should close the Window, but look like Quit. End behaviour is that every
94
+ // Window _acts_ like a separate process, but is really a separate window.
95
+ // (This lets us easily share a single server instance)
96
+ role: 'close',
97
+ label: 'Quit',
98
+ accelerator: 'CommandOrControl+Q'
99
+ }
100
]
101
});
102
}
0 commit comments