Skip to content

Commit

Permalink
fix: remove extra space in clang-format reporting
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas Larson <[email protected]>
  • Loading branch information
LucasLarson committed Apr 26, 2024
1 parent 6ee39f5 commit 9025145
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom/aliases.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ clang_format() {
! command git rev-parse --is-inside-work-tree >/dev/null 2>&1 &&
command clang-format -i --style "{IndentWidth: ${IndentWidth:-2}, ColumnLimit: ${ColumnLimit:-79}}" --verbose -- {} 2>&1
' ';' |
command sed -e 's/\[1\/1\]//' >&2
command sed -e 's/ \[1\/1\]//' >&2
unset -v -- IndentWidth 2>/dev/null || IndentWidth=''
unset -v -- ColumnLimit 2>/dev/null || ColumnLimit=''
printf -- '\n'
Expand Down

0 comments on commit 9025145

Please sign in to comment.