diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-04-25 21:22:25 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-04-25 21:22:25 +0200 |
commit | 8ec73a3a8974a62a613680a6b6222a77a7b99546 (patch) | |
tree | ebc6f1170d2fab2a42c5ac86e80921382595de60 /ftdetect | |
parent | b2ee28374b942026474e77d9aa6fc538f105755b (diff) | |
download | vim-polyglot-8ec73a3a8974a62a613680a6b6222a77a7b99546.tar.gz vim-polyglot-8ec73a3a8974a62a613680a6b6222a77a7b99546.zip |
Change fsharp provider, closes #477
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 |