diff options
author | Christian Clason <c.clason@uni-graz.at> | 2025-02-22 11:09:02 +0100 |
---|---|---|
committer | Christian Clason <ch.clason+github@icloud.com> | 2025-02-23 00:19:53 +0100 |
commit | 228fe500878073249432e07d8b1cc36b37b42257 (patch) | |
tree | e36e494cdb091e8a7d35af088bff020a368da110 /runtime/lua | |
parent | 010684e0240d86ec88e25dd485b2044297bbf62e (diff) | |
download | rneovim-228fe500878073249432e07d8b1cc36b37b42257.tar.gz rneovim-228fe500878073249432e07d8b1cc36b37b42257.tar.bz2 rneovim-228fe500878073249432e07d8b1cc36b37b42257.zip |
vim-patch:9.1.1134: filetype: Guile init file not recognized
Problem: filetype: Guile init file not recognized
Solution: detect '.guile' file as scheme filetype
(David Mandelberg)
References:
https://www.gnu.org/software/guile/manual/html_node/Init-File.html
> When run interactively, Guile will load a local initialization file
> from ~/.guile. This file should contain Scheme expressions for
> evaluation.
closes: vim/vim#16683
https://github.com/vim/vim/commit/41a6026f007facb1ada3ff2a63a054913432860c
Co-authored-by: David Mandelberg <david@mandelberg.org>
Diffstat (limited to 'runtime/lua')
-rw-r--r-- | runtime/lua/vim/filetype.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index 3e6b99435d..66ee45587a 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -1802,6 +1802,7 @@ local filename = { Vagrantfile = 'ruby', ['smb.conf'] = 'samba', ['.lips_repl_history'] = 'scheme', + ['.guile'] = 'scheme', screenrc = 'screen', ['.screenrc'] = 'screen', ['/etc/sensors3.conf'] = 'sensors', |