# # Allow prefilling of the prompt buffer # # Copyright © 1994–2019 martin f. krafft # Released under the terms of the Artistic Licence 2.0 # # Source repository: http://git.madduck.net/v/etc/zsh.git # if [[ -n "$ZSH_PREFILL_CMD" ]]; then print -z - $ZSH_PREFILL_CMD unset ZSH_PREFILL_CMD fi if [[ -n "$ZSH_RUN_ON_LOAD" ]]; then eval "$ZSH_RUN_ON_LOAD" unset ZSH_RUN_ON_LOAD fi # vim:ft=zsh