From 22360b18c4c41d62152b30294b350d25511472e9 Mon Sep 17 00:00:00 2001 From: David Runge Date: Wed, 8 Mar 2017 19:23:17 +0100 Subject: .zsh.after/functions.zsh: Adding support to export .asc files using gpg within ex(). --- .zsh.after/functions.zsh | 3 +++ 1 file changed, 3 insertions(+) (limited to '.zsh.after') diff --git a/.zsh.after/functions.zsh b/.zsh.after/functions.zsh index 5be8e73..b089ff6 100644 --- a/.zsh.after/functions.zsh +++ b/.zsh.after/functions.zsh @@ -149,6 +149,9 @@ ex() { *.gpg) gpg -o ${1%".gpg"} -d $1 ;; + *.asc) + gpg -o ${1%".asc"} -d $1 + ;; *.gz) gunzip $1 ;; -- cgit v1.2.3-54-g00ecf