567ad505150e
Update
author | Steve Losh <steve@stevelosh.com> |
---|---|
date | Sat, 16 Sep 2023 13:44:31 -0400 |
parents | 74a0e0218014 |
children | 044bbdcfb141 |
branches/tags | (none) |
files | README.markdown |
Changes
--- a/README.markdown Sat Sep 16 12:18:16 2023 -0400 +++ b/README.markdown Sat Sep 16 13:44:31 2023 -0400 @@ -1514,3 +1514,12 @@ sudo ln -s /home/sjl/src/ccl/lx86cl64 /usr/local/bin/ccl64 +Finally discovered the reason my bash prompt gets mangled sometimes: +non-printing characters in `PS1` have to be wrapped in `\[…\]`. So I need to do +something ugly like this: + + export PS1='\n\[${PINK}\]\u \[${D}\]at \[${HOST_COLOR}\]\h \[${D}\]in \[${GREEN}\]\w\[${D}\] $(last_return_value)$ ' + +But at least it works properly now and won't drive me crazy. + +See lab notebook.