1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-10-01 09:32:27 +01:00

Compare commits

..

1 Commits

Author SHA1 Message Date
Keith Hall
839bfded39 Map /var/log/dmesg to Syslog syntax 2025-09-27 22:48:13 +03:00
3 changed files with 9 additions and 6 deletions

View File

@@ -57,6 +57,7 @@
- Map `.flatpakref` and `.flatpakrepo` files to INI syntax #3353 (@Ferenc-)
- Update hosts syntax #3368 (@keith-hall)
- Map `.kshrc` files to Bash syntax #3364 (@ritoban23)
- Map `/var/log/dmesg` files to Syslog syntax #3412 (@keith-hall)
## Themes

12
Cargo.lock generated
View File

@@ -157,7 +157,7 @@ dependencies = [
"syntect",
"tempfile",
"terminal-colorsaurus",
"thiserror 2.0.17",
"thiserror 2.0.11",
"toml",
"unicode-segmentation",
"unicode-width",
@@ -1691,11 +1691,11 @@ dependencies = [
[[package]]
name = "thiserror"
version = "2.0.17"
version = "2.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
dependencies = [
"thiserror-impl 2.0.17",
"thiserror-impl 2.0.11",
]
[[package]]
@@ -1711,9 +1711,9 @@ dependencies = [
[[package]]
name = "thiserror-impl"
version = "2.0.17"
version = "2.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
dependencies = [
"proc-macro2",
"quote",

View File

@@ -0,0 +1,2 @@
[mappings]
"Syslog" = ["/var/log/dmesg"]