From 8486be143b44a2d929430d41405124dcd1bfccb9 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sat, 22 Aug 2020 00:05:11 +0200 Subject: Idea for adding diff colours Ideas for getting diff colours from the Git config and parsing them using 'colorparse'. Leaving this aside and planning to add diff colours by executing `git-diff` instead. Shelling out to `git diff` would allow us to accept diff command line options like `--word-diff` and have them work transparently. --- github-suggestion/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'github-suggestion/src/lib.rs') diff --git a/github-suggestion/src/lib.rs b/github-suggestion/src/lib.rs index 3ec6f00..b7e54cc 100644 --- a/github-suggestion/src/lib.rs +++ b/github-suggestion/src/lib.rs @@ -20,6 +20,8 @@ pub mod client; pub mod suggestion; +pub(crate) mod color; + mod url; pub use crate::client::Client; -- cgit v1.2.3