From f998f13612664b1bf554105b649e7ca2eb0e4768 Mon Sep 17 00:00:00 2001 From: iriri <32588326+iriri@users.noreply.github.com> Date: Sun, 26 Oct 2025 13:14:20 -0700 Subject: [PATCH] Add a couple of missing `let`s --- indent/fsharp.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/indent/fsharp.vim b/indent/fsharp.vim index 256f08c..396c6b6 100644 --- a/indent/fsharp.vim +++ b/indent/fsharp.vim @@ -73,9 +73,9 @@ function! s:ScopedFind(regex, start_line, scope) let in_comment = 0 endif if line == '' - blank_lines += 1 + let blank_lines += 1 else - blank_lines = 0 + let blank_lines = 0 endif endwhile