0
0
mirror of https://github.com/vim/vim.git synced 2025-10-07 05:54:16 -04:00

patch 9.0.0042: missing change for filetype detection

Problem:    Missing change for filetype detection.
Solution:   Include change to detect guile from shebang line.
This commit is contained in:
Bram Moolenaar
2022-07-05 21:56:39 +01:00
parent 704988f0c3
commit 3244780379
2 changed files with 6 additions and 0 deletions

View File

@@ -193,6 +193,10 @@ def DetectFromHashBang(firstline: string)
elseif name =~ 'icon\>'
set ft=icon
# Guile
elseif name =~ 'guile'
set ft=scheme
endif
enddef