mirror of
				https://github.com/dcarrillo/prezto.git
				synced 2025-11-04 12:09:08 +00:00 
			
		
		
		
	Compare commits
	
		
			1 Commits
		
	
	
		
			pull/517-a
			...
			revision/d
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					fb13aa3327 | 
@@ -73,7 +73,7 @@ while (( $# > 0 )); do
 | 
			
		||||
  esac
 | 
			
		||||
 | 
			
		||||
  (( success = $success > 0 ? $success : $? ))
 | 
			
		||||
  (( $success == 0 )) && (( $remove_archive == 0 )) && rm "$1"
 | 
			
		||||
  (( $success == 0 && $remove_archive == 0 )) && rm "$1"
 | 
			
		||||
  shift
 | 
			
		||||
done
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -123,8 +123,10 @@ zstyle ':completion:*:*:kill:*' force-list always
 | 
			
		||||
zstyle ':completion:*:*:kill:*' insert-ids single
 | 
			
		||||
 | 
			
		||||
# Man
 | 
			
		||||
zstyle ':completion:*:manuals' separate-sections true
 | 
			
		||||
zstyle ':completion:*:manuals.(^1*)' insert-sections true
 | 
			
		||||
# zstyle ':completion:*:manuals' separate-sections true
 | 
			
		||||
# zstyle ':completion:*:manuals.(^1*)' insert-sections true
 | 
			
		||||
zstyle ':completion:*:manuals.*' insert-sections   true
 | 
			
		||||
zstyle ':completion:*:man:*' menu yes select
 | 
			
		||||
 | 
			
		||||
# Media Players
 | 
			
		||||
zstyle ':completion:*:*:mpg123:*' file-patterns '*.(mp3|MP3):mp3\ files *(-/):directories'
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										0
									
								
								modules/go/init.zsh
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								modules/go/init.zsh
									
									
									
									
									
										Normal file
									
								
							@@ -12,7 +12,7 @@ function is-autoloadable {
 | 
			
		||||
 | 
			
		||||
# Checks if a name is a command, function, or alias.
 | 
			
		||||
function is-callable {
 | 
			
		||||
  (( $+commands[$1] )) || (( $+functions[$1] )) || (( $+aliases[$1] ))
 | 
			
		||||
  (( $+commands[$1] || $+functions[$1] || $+aliases[$1] ))
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
# Checks a boolean variable for "true".
 | 
			
		||||
 
 | 
			
		||||
@@ -22,4 +22,3 @@ alias brews='brew search'
 | 
			
		||||
alias brewu='brew upgrade'
 | 
			
		||||
alias brewU='brew update && brew upgrade'
 | 
			
		||||
alias brewx='brew remove'
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -57,7 +57,7 @@ FG[none]="$FX[none]"
 | 
			
		||||
BG[none]="$FX[none]"
 | 
			
		||||
colors=(black red green yellow blue magenta cyan white)
 | 
			
		||||
for color in {0..255}; do
 | 
			
		||||
  if (( $color >= 0 )) && (( $color < $#colors )); then
 | 
			
		||||
  if (( $color >= 0 && $color < $#colors )); then
 | 
			
		||||
    index=$(( $color + 1 ))
 | 
			
		||||
    FG[$colors[$index]]="\e[38;5;${color}m"
 | 
			
		||||
    BG[$colors[$index]]="\e[48;5;${color}m"
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user