From 88011f33861d19870b5c6abd109d82d8f63d2afe Mon Sep 17 00:00:00 2001 From: SwatBros <40635338+SwatBros@users.noreply.github.com> Date: Sun, 11 Jan 2026 10:22:32 +0100 Subject: [PATCH 1/2] feat: add Prolog support --- src/languages.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/languages.rs b/src/languages.rs index 57ef54e..bacb9c4 100644 --- a/src/languages.rs +++ b/src/languages.rs @@ -50,6 +50,7 @@ pub fn language_for_extension(extension: &str) -> Option<&'static str> { "nim" => Some("Nim"), "nix" => Some("Nix"), "php" => Some("PHP"), + "pl" => Some("Prolog"), "ps1" => Some("PowerShell"), "purs" => Some("PureScript"), "py" => Some("Python"), From a9cffe1f0963ca74fc4e529b6212a7d611594fbd Mon Sep 17 00:00:00 2001 From: SwatBros <40635338+SwatBros@users.noreply.github.com> Date: Sun, 11 Jan 2026 10:28:16 +0100 Subject: [PATCH 2/2] chore: update changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b84a99..49779e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +- Added support for more languages: + - Prolog + ## [0.4.4] - 2025-07-20 ### Added