diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-04-25 21:32:37 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-04-25 21:32:37 +0200 |
commit | 55287efdf7679a4ceda261b03bce5172d6692640 (patch) | |
tree | 9c1e17fadca966ad94a6dc868e2c935ca507897c /ftdetect | |
parent | d757bfd643cc73c2d495355c153ed0257f5d5b47 (diff) | |
download | vim-polyglot-55287efdf7679a4ceda261b03bce5172d6692640.tar.gz vim-polyglot-55287efdf7679a4ceda261b03bce5172d6692640.zip |
Change elm provider, closes #475
Diffstat (limited to 'ftdetect')
-rw-r--r-- | ftdetect/polyglot.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 17dc26db..8d2b2995 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -382,8 +382,8 @@ endif if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'elm') == -1 augroup filetypedetect - " elm, from elm.vim in ElmCast/elm-vim -" detection for Elm (http://elm-lang.org/) + " elm, from elm.vim in andys8/vim-elm-syntax +" detection for Elm (https://elm-lang.org) au BufRead,BufNewFile *.elm set filetype=elm augroup end |