enable find to be able to highlight some hits (#6086)

* enable find to be able to highlight some hits

* oops, deps in the wrong place
This commit is contained in:
Darren Schroeder
2022-07-20 10:09:33 -05:00
committed by GitHub
parent a35a71fd82
commit db9b88089e
9 changed files with 219 additions and 74 deletions

View File

@ -12,6 +12,7 @@ name = "utils"
path = "src/main.rs"
[dependencies]
lscolors = { version = "0.10.0", features = ["crossterm"]}
[target.'cfg(windows)'.dependencies]
crossterm_winapi = "0.9.0"

View File

@ -1,3 +1,5 @@
pub mod utils;
pub use utils::{enable_vt_processing, stderr_write_all_and_flush, stdout_write_all_and_flush};
pub use utils::{
enable_vt_processing, get_ls_colors, stderr_write_all_and_flush, stdout_write_all_and_flush,
};

File diff suppressed because one or more lines are too long