diff options
author | Teddy Wing | 2020-08-22 00:05:11 +0200 |
---|---|---|
committer | Teddy Wing | 2020-08-22 00:05:11 +0200 |
commit | 8486be143b44a2d929430d41405124dcd1bfccb9 (patch) | |
tree | 2e1a96431baf8bfdd17319601117fc5018dd48f2 /github-suggestion/src/lib.rs | |
parent | ed25d1ae52b137ff445649aeb8cdac4d892ce313 (diff) | |
download | git-suggestion-diff-colours.tar.bz2 |
Idea for adding diff coloursdiff-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.
Diffstat (limited to 'github-suggestion/src/lib.rs')
-rw-r--r-- | github-suggestion/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
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; |