From 7e6f9750fe8090fc3226afff84e7d3815221e819 Mon Sep 17 00:00:00 2001 From: Vitalii Parovishnyk <870237+ikorich@users.noreply.github.com> Date: Sat, 31 Jan 2026 14:00:21 +0200 Subject: [PATCH] #34 feat: add more programming languages - Add Markdown, Dockerfile, TOML to DevOps & config section - Add Scala, Elixir, Haskell, Lua to functional languages - Add Dart, Julia, Perl, Zig as additional popular languages - Organize languages into logical groups with comments - Total: 27 languages now available in picker --- .../Sources/BifcodeFeature/Views/ToolBarView.swift | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/BifcodePackage/Sources/BifcodeFeature/Views/ToolBarView.swift b/BifcodePackage/Sources/BifcodeFeature/Views/ToolBarView.swift index 1232ac2..4777e15 100644 --- a/BifcodePackage/Sources/BifcodeFeature/Views/ToolBarView.swift +++ b/BifcodePackage/Sources/BifcodeFeature/Views/ToolBarView.swift @@ -298,10 +298,17 @@ public struct ToolBarView: View { private var commonLanguages: [CodeLanguage] { [ + // Popular languages .swift, .python, .javascript, .typescript, .java, .kotlin, .go, .rust, .ruby, .c, .cpp, .cSharp, .php, .sql, - .html, .css, .json, .yaml, .bash + // Web & markup + .html, .css, .json, .yaml, .markdown, + // DevOps & config + .bash, .dockerfile, .toml, + // Functional & other + .scala, .elixir, .haskell, .lua, + .dart, .julia, .perl, .zig ] }