]> arthur.barton.de Git - ax-zsh.git/commitdiff
Add and streamline comments for prompt variables
authorAlexander Barton <alex@barton.de>
Sat, 8 Jul 2017 21:17:38 +0000 (23:17 +0200)
committerAlexander Barton <alex@barton.de>
Sat, 8 Jul 2017 21:17:38 +0000 (23:17 +0200)
core/90_theme/90_theme.zshrc
themes/ax.axzshtheme
themes/axemoji.axzshtheme

index a6325c2ac01c234aec268632e68d184e2f605f96..084d2f3a3290a15a4a3624a20dd0b48095a49033 100644 (file)
@@ -1,6 +1,8 @@
 # AX-ZSH: Alex' Modular ZSH Configuration
 # 90_theme.zshrc: Load AX-ZSH theme
 
+# Read in the theme configuration.
 [[ -n "$AXZSH_THEME" ]] && source "$AXZSH_THEME"
 
+# RPS1 will cause trouble on "dumb" terminals; so reset it there!
 axzsh_is_dumb_terminal && unset RPS1
index df8b0565f1349b1dff7ef897806287ae901c8b15..b04dc4add0abe7b916e0a4ce5c5b57e3f0ae6a88 100644 (file)
@@ -12,15 +12,15 @@ ZSH_THEME_PROMPT_SUFFIX_SPACING=" "
 ax_logname_prompt_functions=($ax_logname_prompt_functions ax_logname_prompt_root)
 ax_hostname_prompt_functions=($ax_hostname_prompt_functions ax_hostname_prompt_root)
 
-# Default prompt
+# The primary prompt string, printed before a command is read.
 PS1="$(ax_logname_prompt_yn)$(ax_hostname_prompt_yn)%B%2~%b"'$(ax_vcs_prompt)'"$(ax_prompt)"
 
-# Prompt on right side
+# Primary prompt on the right-hand side.
 axzsh_is_widechar_terminal \
        && RPS1="%(?..%{$fg_no_bold[red]%}%? ↵%{$reset_color%})" \
        || RPS1="%(?..%{$fg_no_bold[red]%}<%?>%{$reset_color%})"
 
-# Execution trace prompt.
+# Default execution trace prompt.
 PS4="$fg_no_bold[yellow]->$reset_color "
 # This prompt is compatible with sh(1) and bash(1), too, so export it!
 export PS4
index 128b4cde48350c59c43d64a3aaaba57c8f9f62b2..4a54a6ddc600b5ddbd9c5d8f7af4bef4e3449d35 100644 (file)
@@ -20,16 +20,18 @@ if axzsh_is_widechar_terminal; then
        ZSH_THEME_VCS_PROMPT_CLEAN="👌$emoji_spacing"
        ZSH_THEME_VCS_PROMPT_DIRTY="👻$emoji_spacing"
 
-       # Prompt on right side
+       # Primary prompt on the right-hand side.
        RPS1="%(?..%{$fg_no_bold[red]%}❌$emoji_spacing%? ↵%{$reset_color%})"
 else
        # Non-UTF8 or incompatible terminal
        system_emoji=">"
        emoji_spacing=""
 
+       # Primary prompt on the right-hand side.
        RPS1="%(?..%{$fg_no_bold[red]%}<%?>%{$reset_color%})"
 fi
 
+# The primary prompt string, printed before a command is read.
 PS1="${system_emoji}${emoji_spacing} $(ax_logname_prompt_yn)$(ax_hostname_prompt_yn)%B%2~%b"'$(ax_vcs_prompt)'"$(ax_prompt)"
 
 # Default execution trace prompt.