dotfiles

🎜 Clone'em, tweak'em, stick'em in your $HOME 🎝
git clone https://git.kevinlegouguec.net/dotfiles
Log | Files | Refs | README

commit 275a9d513efec4f7f449e2b311b68c1965007c15
parent 1e2135f0b2ceb9ee95247fc61bad9632a9d47888
Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Thu, 10 Nov 2016 07:42:49 +0100

(m) Cleanup __fontify

- stop leaking variables
- remove usnused array entry

Diffstat:
M.bashprompt | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/.bashprompt b/.bashprompt @@ -78,12 +78,11 @@ __fontify () codes[white]='37' codes[bold]='1' codes[dim]='2' - codes[clear]='0' local text=$1 shift - output=$(__start-nonprinting) + local output=$(__start-nonprinting) output+='\E[' for ((i=1; i<=$#; i++))