jmlacroix / svn-color

bash function that adds colors to svn output
MIT License
46 stars 14 forks source link

(M)odified files are very hard to read #7

Closed playmono closed 7 years ago

playmono commented 7 years ago

For people thinking blue color for (M)odified files is very hard to read (like me), I suggest changing line 42: https://github.com/jmlacroix/svn-color/blob/master/svn-color.sh#L42

if [[ $RL =~ ^\ ?M ]]; then C="\033[34m";

to

if [[ $RL =~ ^\ ?M ]]; then C="\033[1;34m";