1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-28 16:12:30 +01:00

Mapping .kshrc to bash for syntax highlighting #3361 (#3364)

* Add syntax highlighting support for .kshrc files and update mapping in KornShell syntax #3361
This commit is contained in:
Ritoban Dutta
2025-09-23 22:26:52 +05:30
committed by GitHub
parent c8b8132228
commit e879f532a7
2 changed files with 5 additions and 1 deletions

View File

@@ -56,6 +56,7 @@
- Update Lean syntax from Lean 3 to Lean 4 #3322 (@YDX-2147483647)
- Map `.flatpakref` and `.flatpakrepo` files to INI syntax #3353 (@Ferenc-)
- Update hosts syntax #3368 (@keith-hall)
- Map `.kshrc` files to Bash syntax #3364 (@ritoban23)
## Themes

View File

@@ -1,3 +1,6 @@
# KornShell is backward-compatible with the Bourne shell #2633
[mappings]
"Bourne Again Shell (bash)" = ["*.ksh"]
"Bourne Again Shell (bash)" = [
"*.ksh",
"*.kshrc"
]