From ac993bb0b997874a4ddb7a300b0195322b196b5c Mon Sep 17 00:00:00 2001 From: Hugues Hiegel Date: Fri, 7 Mar 2008 13:24:36 +0100 Subject: - preprint now accepts a second argument to give the color to use - .zlogin uses now preprint command --- 01_Functions.zsh | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to '01_Functions.zsh') diff --git a/01_Functions.zsh b/01_Functions.zsh index 809d85a..18cf1c6 100644 --- a/01_Functions.zsh +++ b/01_Functions.zsh @@ -8,6 +8,14 @@ ## these files with or without this notice. ## +## +## User-defined functions +## +# +# For preexec, precmd, chpwd and other built-in functions, +# go see the file Prompts.zsh +# + cmd_exists () { @@ -35,12 +43,16 @@ term_title() preprint() { + local my_color + + my_color=${2-"$color[black];$color[bold]"} + hbar= for i in {1..$(($COLUMNS - ${#1} - 5))} do hbar=$hbar- done - print -Pn "${C_}0;30;1${_C}${hbar}[ $1 ]-\r${C_}0${_C}" + print -Pn "${C_}$my_color${_C}${hbar}[ $1 ]-\r${C_}0${_C}" } get_git_branch () -- cgit v1.2.3