1
0
mirror of https://github.com/sharkdp/bat synced 2026-08-01 18:31:46 +00:00

Code formatting

This commit is contained in:
sharkdp
2020-09-20 20:47:21 +02:00
parent 57aa88a13a
commit 71b2089384
5 changed files with 14 additions and 11 deletions
+7 -5
View File
@@ -92,14 +92,16 @@ impl<'a> SyntaxMapping<'a> {
"*.swap",
"*.target",
"*.timer",
].iter() {
mapping
.insert(glob, MappingTarget::MapTo("INI"))
.unwrap();
]
.iter()
{
mapping.insert(glob, MappingTarget::MapTo("INI")).unwrap();
}
// pacman hooks
mapping.insert("*.hook", MappingTarget::MapTo("INI")).unwrap();
mapping
.insert("*.hook", MappingTarget::MapTo("INI"))
.unwrap();
mapping
}