|
@@ -172,6 +172,16 @@ _seafly_git_fallback() {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
_seafly_command_prompt() {
|
|
_seafly_command_prompt() {
|
|
|
|
|
+
|
|
|
|
|
+ # QNET: Custom Prompting
|
|
|
|
|
+ MSG="/tmp/prompt_msg"
|
|
|
|
|
+ if [[ -f "$MSG" ]]; then # var exists
|
|
|
|
|
+ if [[ -n "$MSG" ]]; then # not empty
|
|
|
|
|
+ cat "$MSG"
|
|
|
|
|
+ echo ''
|
|
|
|
|
+ fi
|
|
|
|
|
+ fi
|
|
|
|
|
+
|
|
|
# Run the pre-command if set.
|
|
# Run the pre-command if set.
|
|
|
eval $SEAFLY_PRE_COMMAND
|
|
eval $SEAFLY_PRE_COMMAND
|
|
|
|
|
|