From a299d27b1fbe0109903eb3b0e0fa942cb0ec18a1 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Tue, 9 Sep 2025 22:30:54 +0200 Subject: [PATCH] feat: add F# language support closes #291 --- build.zig.zon | 4 ++-- src/file_type_lsp.zig | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/build.zig.zon b/build.zig.zon index 6ae9a7b..8d7f4fb 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -6,8 +6,8 @@ .dependencies = .{ .syntax = .{ - .url = "git+https://github.com/neurocyte/flow-syntax?ref=zig-0.14#bfeb77d62a5e58ec5d2451bdd543619ae26923a2", - .hash = "flow_syntax-0.1.0-X8jOoSkCAQClgFS-j4X7jL-PMJ6LVKdAoNMaHgqJweFL", + .url = "git+https://github.com/neurocyte/flow-syntax?ref=zig-0.14#ba7fc816227ad4f1bb36fbb332d53d28affc64fe", + .hash = "flow_syntax-0.1.0-X8jOoYUDAQDs3XT1lWthyWYF6g4iVpqJdRIWM14ECE50", }, .flags = .{ .url = "https://github.com/n0s4/flags/archive/372501d1576b5723829bcba98e41361132c7b618.tar.gz", diff --git a/src/file_type_lsp.zig b/src/file_type_lsp.zig index a558cc7..1c02e6e 100644 --- a/src/file_type_lsp.zig +++ b/src/file_type_lsp.zig @@ -48,6 +48,10 @@ pub const elixir = .{ pub const fish = .{}; +pub const fsharp = .{ + .language_server = .{"fsautocomplete"}, +}; + pub const @"git-rebase" = .{}; pub const gitcommit = .{};