Maxima rlwarp

This commit is contained in:
2026-08-11 17:16:27 -07:00
parent 5d22076555
commit 8e0e86f2f3
+7 -1
View File
@@ -142,7 +142,13 @@ fi
export VISUAL="${EDITOR}" export VISUAL="${EDITOR}"
# Make SBCL *slightly* less frustrating to use on the command line # Make SBCL *slightly* less frustrating to use on the command line
alias sbcl='rlwrap -pblue -q "\"" sbcl' if cmd_exists sbcl; then
alias sbcl='rlwrap -pblue -q "\"" sbcl'
fi
# Maxima too
if cmd_exists maxima; then
alias maxima='rlwrap -pblue -q "\"" maxima'
fi
# Safer file functions # Safer file functions
alias cp="cp -i" alias cp="cp -i"