mirror of
https://github.com/sharkdp/bat
synced 2024-12-03 17:19:27 +00:00
fix: Add syntax mapping jsonl
=> json
This commit is contained in:
parent
48dc2b0d90
commit
d580445aef
1 changed files with 4 additions and 0 deletions
|
@ -76,6 +76,10 @@ impl<'a> SyntaxMapping<'a> {
|
||||||
.insert("fish_history", MappingTarget::MapTo("YAML"))
|
.insert("fish_history", MappingTarget::MapTo("YAML"))
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
|
mapping
|
||||||
|
.insert("*.jsonl", MappingTarget::MapTo("JSON"))
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
// See #2151, https://nmap.org/book/nse-language.html
|
// See #2151, https://nmap.org/book/nse-language.html
|
||||||
mapping
|
mapping
|
||||||
.insert("*.nse", MappingTarget::MapTo("Lua"))
|
.insert("*.nse", MappingTarget::MapTo("Lua"))
|
||||||
|
|
Loading…
Reference in a new issue