mirror of
https://github.com/wez/wezterm.git
synced 2024-11-26 08:25:50 +03:00
rustfmt
This commit is contained in:
parent
d983e53e91
commit
601e32e625
@ -238,9 +238,7 @@ impl ParsedConfigFile {
|
||||
continue;
|
||||
}
|
||||
|
||||
if let Some(sep) = line
|
||||
.find(|c: char| c == '=' || c.is_whitespace())
|
||||
{
|
||||
if let Some(sep) = line.find(|c: char| c == '=' || c.is_whitespace()) {
|
||||
let (k, v) = line.split_at(sep);
|
||||
let k = k.trim().to_lowercase();
|
||||
let v = v[1..].trim();
|
||||
|
Loading…
Reference in New Issue
Block a user