소스 검색

Fix Git colours to be actually correct

Ben S 10 년 전
부모
커밋
e2f2bd69de
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      src/output/details.rs

+ 4 - 4
src/output/details.rs

@@ -296,11 +296,11 @@ impl Table {
         let render_char = |chr| {
             match chr {
                 f::GitStatus::NotModified  => self.colours.punctuation.paint("-"),
-                f::GitStatus::New          => self.colours.git.renamed.paint("N"),
-                f::GitStatus::Modified     => self.colours.git.renamed.paint("M"),
-                f::GitStatus::Deleted      => self.colours.git.renamed.paint("D"),
+                f::GitStatus::New          => self.colours.git.new.paint("N"),
+                f::GitStatus::Modified     => self.colours.git.modified.paint("M"),
+                f::GitStatus::Deleted      => self.colours.git.deleted.paint("D"),
                 f::GitStatus::Renamed      => self.colours.git.renamed.paint("R"),
-                f::GitStatus::TypeChange   => self.colours.git.renamed.paint("T"),
+                f::GitStatus::TypeChange   => self.colours.git.typechange.paint("T"),
             }
         };