add 'quit' command, because I can never remember whether it's exit or quit...
authoruranther <jwheaton@purdue.edu>
Wed, 10 Jun 2009 22:44:33 +0000 (18:44 -0400)
committeruranther <jwheaton@purdue.edu>
Wed, 10 Jun 2009 22:44:33 +0000 (18:44 -0400)
uzbl.c

diff --git a/uzbl.c b/uzbl.c
index b2fa48a..a94bac5 100644 (file)
--- a/uzbl.c
+++ b/uzbl.c
@@ -627,6 +627,7 @@ static struct {char *name; Command command[2];} cmdlist[] =
     { "sh",                 {spawn_sh, 0}                  },
     { "sync_sh",            {spawn_sh_sync, 0}             }, // needed for cookie handler
     { "exit",               {close_uzbl, 0}                },
+    { "quit",               {close_uzbl, 0}                },
     { "search",             {search_forward_text, NOSPLIT} },
     { "search_reverse",     {search_reverse_text, NOSPLIT} },
     { "dehilight",          {dehilight, 0}                 },