mirror of
https://github.com/sharkdp/bat.git
synced 2025-10-02 01:52:27 +01:00
Compare commits
1 Commits
dependabot
...
dmesg_synt
Author | SHA1 | Date | |
---|---|---|---|
|
839bfded39 |
@@ -57,6 +57,7 @@
|
|||||||
- Map `.flatpakref` and `.flatpakrepo` files to INI syntax #3353 (@Ferenc-)
|
- Map `.flatpakref` and `.flatpakrepo` files to INI syntax #3353 (@Ferenc-)
|
||||||
- Update hosts syntax #3368 (@keith-hall)
|
- Update hosts syntax #3368 (@keith-hall)
|
||||||
- Map `.kshrc` files to Bash syntax #3364 (@ritoban23)
|
- Map `.kshrc` files to Bash syntax #3364 (@ritoban23)
|
||||||
|
- Map `/var/log/dmesg` files to Syslog syntax #3412 (@keith-hall)
|
||||||
|
|
||||||
## Themes
|
## Themes
|
||||||
|
|
||||||
|
12
Cargo.lock
generated
12
Cargo.lock
generated
@@ -133,7 +133,8 @@ dependencies = [
|
|||||||
"grep-cli",
|
"grep-cli",
|
||||||
"home",
|
"home",
|
||||||
"indexmap",
|
"indexmap",
|
||||||
"itertools",
|
"itertools 0.13.0",
|
||||||
|
"itertools 0.14.0",
|
||||||
"minus",
|
"minus",
|
||||||
"nix",
|
"nix",
|
||||||
"nu-ansi-term",
|
"nu-ansi-term",
|
||||||
@@ -899,6 +900,15 @@ version = "1.70.1"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "itertools"
|
||||||
|
version = "0.13.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
||||||
|
dependencies = [
|
||||||
|
"either",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "itertools"
|
name = "itertools"
|
||||||
version = "0.14.0"
|
version = "0.14.0"
|
||||||
|
@@ -74,7 +74,7 @@ encoding_rs = "0.8.35"
|
|||||||
execute = { version = "0.2.13", optional = true }
|
execute = { version = "0.2.13", optional = true }
|
||||||
terminal-colorsaurus = "1.0"
|
terminal-colorsaurus = "1.0"
|
||||||
unicode-segmentation = "1.12.0"
|
unicode-segmentation = "1.12.0"
|
||||||
itertools = "0.14.0"
|
itertools = "0.13.0"
|
||||||
|
|
||||||
[dependencies.git2]
|
[dependencies.git2]
|
||||||
version = "0.20"
|
version = "0.20"
|
||||||
|
2
src/syntax_mapping/builtins/unix-family/50-syslog.toml
Normal file
2
src/syntax_mapping/builtins/unix-family/50-syslog.toml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
[mappings]
|
||||||
|
"Syslog" = ["/var/log/dmesg"]
|
Reference in New Issue
Block a user