mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
vim-patch:8.2.3873: go.mod files are not recognized
Problem: go.mod files are not recognized. Solution: Check for the file name. (closes vim/vim#9380)82b3b4c6cf
(cherry picked from commit2f813d6c3e
)
This commit is contained in:
parent
786272d00b
commit
bee7b6167d
@ -1080,7 +1080,9 @@ au BufNewFile,BufRead *.mmp setf mmp
|
|||||||
|
|
||||||
" Modsim III (or LambdaProlog)
|
" Modsim III (or LambdaProlog)
|
||||||
au BufNewFile,BufRead *.mod
|
au BufNewFile,BufRead *.mod
|
||||||
\ if getline(1) =~ '\<module\>' |
|
\ if expand("<afile>") =~ '\<go.mod$' |
|
||||||
|
\ setf gomod |
|
||||||
|
\ elseif getline(1) =~ '\<module\>' |
|
||||||
\ setf lprolog |
|
\ setf lprolog |
|
||||||
\ else |
|
\ else |
|
||||||
\ setf modsim3 |
|
\ setf modsim3 |
|
||||||
|
@ -204,6 +204,7 @@ let s:filename_checks = {
|
|||||||
\ 'gnash': ['gnashrc', '.gnashrc', 'gnashpluginrc', '.gnashpluginrc'],
|
\ 'gnash': ['gnashrc', '.gnashrc', 'gnashpluginrc', '.gnashpluginrc'],
|
||||||
\ 'gnuplot': ['file.gpi'],
|
\ 'gnuplot': ['file.gpi'],
|
||||||
\ 'go': ['file.go'],
|
\ 'go': ['file.go'],
|
||||||
|
\ 'gomod': ['go.mod'],
|
||||||
\ 'gp': ['file.gp', '.gprc'],
|
\ 'gp': ['file.gp', '.gprc'],
|
||||||
\ 'gpg': ['/.gnupg/options', '/.gnupg/gpg.conf', '/usr/any/gnupg/options.skel', 'any/.gnupg/gpg.conf', 'any/.gnupg/options', 'any/usr/any/gnupg/options.skel'],
|
\ 'gpg': ['/.gnupg/options', '/.gnupg/gpg.conf', '/usr/any/gnupg/options.skel', 'any/.gnupg/gpg.conf', 'any/.gnupg/options', 'any/usr/any/gnupg/options.skel'],
|
||||||
\ 'grads': ['file.gs'],
|
\ 'grads': ['file.gs'],
|
||||||
|
Loading…
Reference in New Issue
Block a user