diff options
Diffstat (limited to 'term-open')
-rwxr-xr-x | term-open | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -7,10 +7,10 @@ term=termite if [[ $cmd = "mutt" ]]; then if [[ "$*" = 'mailto:?'* ]]; then - exec termite -e "mutt -- $*" + exec termite -e "mutt -- ${*@Q}" else - exec termite -e "mutt -e 'set autoedit=yes' -- $*" + exec termite -e "mutt -e 'set autoedit=yes' -- ${*@Q}" fi fi -exec termite -e "$cmd -- $*" +exec termite -e "$cmd -- ${*@Q}" |