From fb5affc593613a96c0fdecc66d553812afd219e0 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Tue, 23 Apr 2019 14:48:42 +0200 Subject: [PATCH] change shell exit alias to :q to mirror vim --- .config/shell/rc.d/base-aliases.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/shell/rc.d/base-aliases.sh b/.config/shell/rc.d/base-aliases.sh index 56b24cf..970cd4a 100644 --- a/.config/shell/rc.d/base-aliases.sh +++ b/.config/shell/rc.d/base-aliases.sh @@ -28,5 +28,5 @@ alias cl="clear" # let me exit out of the shell same way as vim # TODO integrate session management with w? -alias "q"="exit" -alias "wq"="exit" +alias ":q"="exit" +alias ":wq"="exit"