From 34e8da4e824bb5b2f0879f4a7d7322dc61368c44 Mon Sep 17 00:00:00 2001 From: ADAM David Alan Martin Date: Thu, 16 Jun 2022 17:19:12 -0400 Subject: [PATCH 1/2] Add more highlighting for testing primtives. --- vim/after/syntax/cpp.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vim/after/syntax/cpp.vim b/vim/after/syntax/cpp.vim index caf6b3f..f24fc27 100644 --- a/vim/after/syntax/cpp.vim +++ b/vim/after/syntax/cpp.vim @@ -181,6 +181,10 @@ syn match cxxStlDangerousFunction "\(\.\)\@<=release()" syn match cxxTestingCall "\" syn match cxxTestingCall "\" +syn match cxxTestingCall "\" +syn match cxxTestingCall "\" +syn match cxxTestingCall "\" +syn match cxxTestingCall "\" " Define the default highlighting. From 26fce0ca4b22ebfde10dad070e05b6ea9350b84c Mon Sep 17 00:00:00 2001 From: ADAM David Alan Martin Date: Thu, 16 Jun 2022 17:20:41 -0400 Subject: [PATCH 2/2] Fix prompt layout slightly. --- tcshrc.prompt.final | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tcshrc.prompt.final b/tcshrc.prompt.final index 58602c9..d1eb519 100644 --- a/tcshrc.prompt.final +++ b/tcshrc.prompt.final @@ -259,9 +259,9 @@ if( 0 == ${__res} ) then # If the font doesn't support the special branch symbol... set branch_symbol=`printf "\uE0A0"` # I could always fallback to this one... (keep padded spaces... for alignment) - set branch_symbol=`printf '\u2387\ \ \ '` + set branch_symbol=`printf '\u2387\ \ '` - set git_prompt="%{${sgr_reset}%}(${branch_symbol} %{${branch_color_seq}%}${git_branch}%{${sgr_reset}%}) " + set git_prompt="%{${sgr_reset}%}(${branch_symbol} %{${branch_color_seq}%}${git_branch}%{${sgr_reset}%}) " #set git_prompt="%{${csi}10D${csi}2D(xyz${git_branch})${csi}m%%}" #set git_prompt="%{${csi}0;35m${csi}50D${git_branch} %}" endif