Skip to content

Commit

Permalink
Fixed syntax errror which causes tabcompletion to fail.
Browse files Browse the repository at this point in the history
  • Loading branch information
OrangeTux committed Mar 1, 2014
1 parent 390b5f2 commit 379fd2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion home/.zsh-custom/orangetux.zsh-theme
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function box_name {
local current_dir='${PWD/#$HOME/~}'

# Horizontal line.
local prefix='$(if [[ -z $i ]] ; then i=$(tput cols) ; while (( i-- > 9 )) ; do echo -n '' ; done ; echo -n " " ; unset i ; fi)$fg[cyan]%*$reset_color'
local prefix='$(if [[ -z $i ]] ; then i=$(tput cols) ; while (( i-- > 8 )) ; do echo -n '' ; done ; echo -n " " ; unset i ; fi)%{$fg[cyan]%}%*%{$reset_color%}'

# Git info.
local git_info='$(git_prompt_info)'
Expand Down

0 comments on commit 379fd2b

Please sign in to comment.