Add aliases for Wq and WQ for fat finger mistakes.

I always fat finger these two and then I get an error telling me that I am
doing a command that doesn't exist. I added these two so that when I fat finger
it and capitalize something the program still exits like I want it to.
This commit is contained in:
Nate Holland 2016-02-17 15:19:56 -06:00
parent ded67a40b5
commit f8b6ba2626

View file

@ -230,6 +230,12 @@ class Ex
wq: (args) =>
@write(args).then => @quit()
Wq: (args) =>
@write(args).then => @quit()
WQ: (args) =>
@write(args).then => @quit()
wa: =>
@wall()