comparison 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
comparison
equal deleted inserted replaced
26310:61dd75441707 26311:ce3678583211
195 set ft=routeros 195 set ft=routeros
196 196
197 " Fish shell 197 " Fish shell
198 elseif s:name =~# 'fish\>' 198 elseif s:name =~# 'fish\>'
199 set ft=fish 199 set ft=fish
200
201 " Gforth
202 elseif s:name =~# 'gforth\>'
203 set ft=forth
200 204
201 endif 205 endif
202 unlet s:name 206 unlet s:name
203 207
204 else 208 else