mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-30 05:02:28 +01:00
:qa closes the current window (because Vim habits are hard to break and shouldn't be destructive). :exit quits the app.
This commit is contained in:
@@ -747,8 +747,9 @@ var Tabs = Module("tabs", {
|
||||
});
|
||||
|
||||
commands.add(["quita[ll]", "qa[ll]"],
|
||||
"Quit " + config.appName,
|
||||
function (args) { dactyl.quit(false, args.bang); }, {
|
||||
"Quit this " + config.appName + " window",
|
||||
function (args) { window.close(); },
|
||||
{
|
||||
argCount: "0",
|
||||
bang: true
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user