From 6691f43ab6d97f489bc8348171fbf20eda2aec37 Mon Sep 17 00:00:00 2001 From: Martinez Date: Sun, 28 Jan 2018 12:18:45 +0100 Subject: [PATCH] ppp is now bpython or python, pp is just python --- etc/zsh/zshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 256d289..ebf7f76 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -27,11 +27,11 @@ ppp () { if [ $? == 0 ]; then bpython "$@" else - python3 "$@" + python "$@" fi } -alias pp=ppp +alias pp=python # apparently this is the only way of setting GNU Screen to UTF-8 alias screen="screen -U"