We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9bf74d6 + b1fbcc8 commit 6dd8b28Copy full SHA for 6dd8b28
2 files changed
CHANGELOG.md
@@ -12,6 +12,7 @@
12
13
- Associate `os-release` with `bash` syntax, see #2587 (@cyqsimon)
14
- Associate `Containerfile` with `Dockerfile` syntax, see #2606 (@einfachIrgendwer0815)
15
+- Associate `ksh` files with `bash` syntax, see #2633 (@johnmatthiggins)
16
17
## Themes
18
src/syntax_mapping.rs
@@ -90,6 +90,10 @@ impl<'a> SyntaxMapping<'a> {
90
.insert("Containerfile", MappingTarget::MapTo("Dockerfile"))
91
.unwrap();
92
93
+ mapping
94
+ .insert("*.ksh", MappingTarget::MapTo("Bourne Again Shell (bash)"))
95
+ .unwrap();
96
+
97
// Nginx and Apache syntax files both want to style all ".conf" files
98
// see #1131 and #1137
99
mapping
0 commit comments