Current File : //usr/share/zsh/5.0.7/functions/Zle/zcalc-auto-insert
# Bind to a binary operator keystroke for use with zcalc

if [[ -n $ZCALC_ACTIVE ]]; then
  if [[ $CURSOR -eq 0 || $LBUFFER[-1] = "(" ]]; then
    LBUFFER+=${ZCALC_AUTO_INSERT_PREFIX:-"ans "}
  fi
fi
zle .self-insert