From 90d6e6cf0b22520a5177e8e842acbb142482e4eb Mon Sep 17 00:00:00 2001 From: Matan Kushner Date: Mon, 13 May 2019 22:43:11 -0600 Subject: Implement the git status module (#45) --- src/modules/mod.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/modules/mod.rs') diff --git a/src/modules/mod.rs b/src/modules/mod.rs index 2a9f433bb..5b3e7167f 100644 --- a/src/modules/mod.rs +++ b/src/modules/mod.rs @@ -1,6 +1,7 @@ mod character; mod directory; mod git_branch; +mod git_status; mod go; mod line_break; mod nodejs; @@ -22,6 +23,7 @@ pub fn handle(module: &str, context: &Context) -> Option { "line_break" => line_break::segment(context), "package" => package::segment(context), "git_branch" => git_branch::segment(context), + "git_status" => git_status::segment(context), _ => panic!("Unknown module: {}", module), } -- cgit v1.2.3