mirror of
https://github.com/sharkdp/bat
synced 2024-11-22 20:03:06 +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"))
|
||||
.unwrap();
|
||||
|
||||
mapping
|
||||
.insert("*.jsonl", MappingTarget::MapTo("JSON"))
|
||||
.unwrap();
|
||||
|
||||
// See #2151, https://nmap.org/book/nse-language.html
|
||||
mapping
|
||||
.insert("*.nse", MappingTarget::MapTo("Lua"))
|
||||
|
|
Loading…
Reference in a new issue