diff options
Diffstat (limited to 'ftdetect')
-rw-r--r-- | ftdetect/polyglot.vim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index a41e3f42..17dc26db 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -455,9 +455,10 @@ endif if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'fsharp') == -1 augroup filetypedetect - " fsharp, from fsharp.vim in fsharp/vim-fsharp:_BASIC + " fsharp, from fsharp.vim in ionide/Ionide-vim:_BASIC " F#, fsharp autocmd BufNewFile,BufRead *.fs,*.fsi,*.fsx set filetype=fsharp +autocmd BufNewFile,BufRead *.fsproj set filetype=fsharp_project augroup end endif |