From ec6110b836108d2f102a71af9d1d0a42b7ee2585 Mon Sep 17 00:00:00 2001 From: Wryn Wagner Date: Fri, 10 Jan 2020 09:07:06 -0700 Subject: [PATCH] Removed python from editor suffixes --- zsh/suffixes | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/zsh/suffixes b/zsh/suffixes index 12ac1ca..42fd03a 100644 --- a/zsh/suffixes +++ b/zsh/suffixes @@ -1,13 +1,12 @@ #!/bin/zsh -PYTHON="py" - CLISP="clisp lisp" - TEXT="txt md js"; - WEB="css scss less html php cshtml json" - JS="ts tsx js" - C="cpp h c cs" +CLISP="clisp lisp" + TEXT="txt md js"; + WEB="css scss less html php cshtml json" + JS="ts tsx js" + C="cpp h c cs" -FILES_TO_EDIT="$PYTHON $CLISP $TEXT $WEB $JS $C"; +FILES_TO_EDIT="$CLISP $TEXT $WEB $JS $C"; for filetype in ${(s/ /)FILES_TO_EDIT}; do alias -s $filetype="$EDITOR";