aboutsummaryrefslogtreecommitdiffstats
path: root/src/vcs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-02-27 00:58:20 -0500
committerJesse Luehrs <doy@tozt.net>2018-02-27 01:19:30 -0500
commit3c15ae513cc800990c5a002d3554fd53b11fe4fd (patch)
tree0ceb2b02a6e96bb449276c5d4242cacd482b19f9 /src/vcs
parentc9599b94434a9320ce0c6710fcd61e1c1126495c (diff)
downloadfancy-prompt-3c15ae513cc800990c5a002d3554fd53b11fe4fd.tar.gz
fancy-prompt-3c15ae513cc800990c5a002d3554fd53b11fe4fd.zip
simplify
Diffstat (limited to 'src/vcs')
-rw-r--r--src/vcs/git.rs14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/vcs/git.rs b/src/vcs/git.rs
index 26a64a9..ddbdfcc 100644
--- a/src/vcs/git.rs
+++ b/src/vcs/git.rs
@@ -138,13 +138,13 @@ impl GitInfo {
#[cfg(feature="verbose")] let _ = talk_about_time(now, "remote branch diff");
GitInfo {
- modified_files: modified_files,
- staged_files: staged_files,
- new_files: new_files,
- commits: commits,
- active_operation: active_operation,
- branch: branch,
- remote_branch_diff: remote_branch_diff,
+ modified_files,
+ staged_files,
+ new_files,
+ commits,
+ active_operation,
+ branch,
+ remote_branch_diff,
}
}
}