From f5ab33cfebf2c9d428378bbd02335ceef5f083e8 Mon Sep 17 00:00:00 2001 From: "Dhanji R. Prasanna" Date: Fri, 27 Jun 2025 15:49:46 +1000 Subject: [PATCH] you forgot the important ones! (#3105) --- crates/goose-mcp/src/developer/lang.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/goose-mcp/src/developer/lang.rs b/crates/goose-mcp/src/developer/lang.rs index 27f17cd7..590f065d 100644 --- a/crates/goose-mcp/src/developer/lang.rs +++ b/crates/goose-mcp/src/developer/lang.rs @@ -4,6 +4,8 @@ use std::path::Path; pub fn get_language_identifier(path: &Path) -> &'static str { match path.extension().and_then(|ext| ext.to_str()) { Some("rs") => "rust", + Some("hs") => "haskell", + Some("rkt") | Some("scm") => "scheme", Some("py") => "python", Some("js") => "javascript", Some("ts") => "typescript",