diff options
author | NerdyPepper <[email protected]> | 2019-05-29 13:33:00 +0100 |
---|---|---|
committer | NerdyPepper <[email protected]> | 2019-05-29 13:33:00 +0100 |
commit | c2449b7aa528e9b5a03d690a5a73b46d960e5841 (patch) | |
tree | 755fe4dbad2eff86ca01f6f6aca19157a64fa044 /src | |
parent | b06c61015559175144c517cf7fdfbb6697179552 (diff) |
support zsh
Diffstat (limited to 'src')
-rw-r--r-- | src/vcs.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -74,7 +74,7 @@ pub fn vcs_status() -> Option<(colored::ColoredString, colored::ColoredString)> | |||
74 | repo_stat = stat_char.color(&git_index_modified_color[..]); | 74 | repo_stat = stat_char.color(&git_index_modified_color[..]); |
75 | }, | 75 | }, |
76 | // STATE: committed (changes have been saved in the repo) | 76 | // STATE: committed (changes have been saved in the repo) |
77 | _ => { } | 77 | _ => {} |
78 | } | 78 | } |
79 | } | 79 | } |
80 | return Some((branch, repo_stat)) | 80 | return Some((branch, repo_stat)) |