mirror of
https://github.com/nushell/nushell.git
synced 2025-08-09 20:47:44 +02:00
Fix warnings for Rust 1.51 (#3214)
* Fix warnings for Rust 1.51 * More fixes * More fixes
This commit is contained in:
@ -146,7 +146,7 @@ pub fn get_color_config() -> HashMap<String, Style> {
|
||||
hm.insert("index_color".to_string(), Color::Green.bold());
|
||||
hm.insert(
|
||||
"leading_trailing_space_bg".to_string(),
|
||||
Style::default().on(Color::RGB(128, 128, 128)),
|
||||
Style::default().on(Color::Rgb(128, 128, 128)),
|
||||
);
|
||||
|
||||
// populate hashmap from config values
|
||||
|
Reference in New Issue
Block a user