Skip to content

Commit

Permalink
Merge branch 'master' into doc_fix
Browse files Browse the repository at this point in the history
  • Loading branch information
johnmatthiggins committed Aug 2, 2023
2 parents b720af8 + b1fbcc8 commit 7826e50
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
- Associate `os-release` with `bash` syntax, see #2587 (@cyqsimon)
- Associate `Containerfile` with `Dockerfile` syntax, see #2606 (@einfachIrgendwer0815)
- Replaced quotes with double quotes so fzf integration example script works on windows and linux. see #2095 (@johnmatthiggins)
- Associate `ksh` files with `bash` syntax, see #2633 (@johnmatthiggins)

## Themes

Expand Down
4 changes: 4 additions & 0 deletions src/syntax_mapping.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,10 @@ impl<'a> SyntaxMapping<'a> {
.insert("Containerfile", MappingTarget::MapTo("Dockerfile"))
.unwrap();

mapping
.insert("*.ksh", MappingTarget::MapTo("Bourne Again Shell (bash)"))
.unwrap();

// Nginx and Apache syntax files both want to style all ".conf" files
// see #1131 and #1137
mapping
Expand Down

0 comments on commit 7826e50

Please sign in to comment.