mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-22 07:43:39 +01:00
Simplify code
This commit is contained in:
parent
2258fb2713
commit
30993a8bfc
@ -108,30 +108,21 @@ impl<'a> SyntaxMapping<'a> {
|
||||
|
||||
mapping
|
||||
.insert(
|
||||
&git_config_path
|
||||
.join("config")
|
||||
.into_os_string()
|
||||
.to_string_lossy(),
|
||||
&git_config_path.join("config").to_string_lossy(),
|
||||
MappingTarget::MapTo("Git Config"),
|
||||
)
|
||||
.ok();
|
||||
|
||||
mapping
|
||||
.insert(
|
||||
&git_config_path
|
||||
.join("ignore")
|
||||
.into_os_string()
|
||||
.to_string_lossy(),
|
||||
&git_config_path.join("ignore").to_string_lossy(),
|
||||
MappingTarget::MapTo("Git Ignore"),
|
||||
)
|
||||
.ok();
|
||||
|
||||
mapping
|
||||
.insert(
|
||||
&git_config_path
|
||||
.join("attributes")
|
||||
.into_os_string()
|
||||
.to_string_lossy(),
|
||||
&git_config_path.join("attributes").to_string_lossy(),
|
||||
MappingTarget::MapTo("Git Attributes"),
|
||||
)
|
||||
.ok();
|
||||
|
Loading…
Reference in New Issue
Block a user