diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2021-06-09 12:01:20 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2021-06-09 12:01:20 +0200 |
commit | f678aad2100068b1310ada35e3eeedddceea59e2 (patch) | |
tree | 1e3f3a91eb2ba50befb31c71e0d94c2a86296461 /autoload/polyglot/init.vim | |
parent | af4d6aa3cf5eab6cf555cbb067f8316cca7975bf (diff) | |
download | vim-polyglot-f678aad2100068b1310ada35e3eeedddceea59e2.tar.gz vim-polyglot-f678aad2100068b1310ada35e3eeedddceea59e2.zip |
Fix livescript filetype, closes #666
Diffstat (limited to 'autoload/polyglot/init.vim')
-rw-r--r-- | autoload/polyglot/init.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/polyglot/init.vim b/autoload/polyglot/init.vim index 6c2e9b87..e463f3ac 100644 --- a/autoload/polyglot/init.vim +++ b/autoload/polyglot/init.vim @@ -2215,7 +2215,7 @@ if !has_key(g:polyglot_is_disabled, 'llvm') endif if !has_key(g:polyglot_is_disabled, 'livescript') - au BufNewFile,BufRead *._ls,*.ls,Slakefile setf livescript + au BufNewFile,BufRead *._ls,*.ls,Slakefile setf ls endif if !has_key(g:polyglot_is_disabled, 'lilypond') |