diff runtime/scripts.vim @ 26311:ce3678583211 v8.2.3686

patch 8.2.3686: filetype detection often mixes up Forth and F# Commit: https://github.com/vim/vim/commit/3d14c0f2b964195d08b34bb43f89ec5f99255194 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 27 17:22:07 2021 +0000 patch 8.2.3686: filetype detection often mixes up Forth and F# Problem: Filetype detection often mixes up Forth and F#. Solution: Add a function to inspect the file contents. (Doug Kearns)
author Bram Moolenaar <Bram@vim.org>
date Sat, 27 Nov 2021 18:30:03 +0100
parents 77ad8ea01c00
children 733295e9d755
line wrap: on
line diff
--- a/runtime/scripts.vim
+++ b/runtime/scripts.vim
@@ -198,6 +198,10 @@ if s:line1 =~# "^#!"
   elseif s:name =~# 'fish\>'
     set ft=fish
 
+    " Gforth
+  elseif s:name =~# 'gforth\>'
+    set ft=forth
+
   endif
   unlet s:name