diff --git a/README.md b/README.md index 1043eb3..373662b 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,6 @@ Optionally download one of the [releases](https://github.com/sheerun/vim-polyglo - [haskell](https://github.com/neovimhaskell/haskell-vim) (syntax, indent, ftplugin, ftdetect) - [haxe](https://github.com/yaymukund/vim-haxe) (syntax, ftdetect) - [html5](https://github.com/othree/html5.vim) (syntax, indent, autoload, ftplugin) -- [jade](https://github.com/digitaltoad/vim-jade) (syntax, indent, ftplugin, ftdetect) - [jasmine](https://github.com/glanotte/vim-jasmine) (syntax, ftdetect) - [javascript](https://github.com/sheerun/yajs.vim) (syntax, indent) - [json](https://github.com/sheerun/vim-json) (syntax, indent, ftdetect) @@ -80,6 +79,7 @@ Optionally download one of the [releases](https://github.com/sheerun/vim-polyglo - [plantuml](https://github.com/aklt/plantuml-syntax) (syntax, ftplugin, ftdetect) - [powershell](https://github.com/Persistent13/vim-ps1) (syntax, indent, ftplugin, ftdetect) - [protobuf](https://github.com/uarun/vim-protobuf) (syntax, ftdetect) +- [pug](https://github.com/digitaltoad/vim-pug) (syntax, indent, ftplugin, ftdetect) - [puppet](https://github.com/voxpupuli/vim-puppet) (syntax, indent, ftplugin, ftdetect) - [purescript](https://github.com/raichoo/purescript-vim) (syntax, indent, ftdetect) - [python](https://github.com/mitsuhiko/vim-python-combined) (syntax, indent) diff --git a/build b/build index fd06bdf..40e17a0 100755 --- a/build +++ b/build @@ -126,7 +126,6 @@ PACKS=" haskell:neovimhaskell/haskell-vim haxe:yaymukund/vim-haxe html5:othree/html5.vim - jade:digitaltoad/vim-jade jasmine:glanotte/vim-jasmine javascript:sheerun/yajs.vim json:sheerun/vim-json @@ -151,6 +150,7 @@ PACKS=" plantuml:aklt/plantuml-syntax powershell:Persistent13/vim-ps1 protobuf:uarun/vim-protobuf + pug:digitaltoad/vim-pug puppet:voxpupuli/vim-puppet purescript:raichoo/purescript-vim python:mitsuhiko/vim-python-combined diff --git a/ftdetect/polyglot.vim b/ftdetect/polyglot.vim index 6de33bd..3866d90 100644 --- a/ftdetect/polyglot.vim +++ b/ftdetect/polyglot.vim @@ -357,7 +357,7 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'powershell') == au BufNewFile,BufRead *.ps1xml set ft=ps1xml endif -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'jade') == -1 +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'pug') == -1 autocmd BufNewFile,BufReadPost *.pug set filetype=pug autocmd BufNewFile,BufReadPost *.jade set filetype=pug diff --git a/ftplugin/pug.vim b/ftplugin/pug.vim index c2b622f..dea25f6 100644 --- a/ftplugin/pug.vim +++ b/ftplugin/pug.vim @@ -1,4 +1,4 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'jade') == -1 +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'pug') == -1 " Vim filetype plugin " Language: Pug diff --git a/indent/pug.vim b/indent/pug.vim index 6518d7c..0f0a438 100644 --- a/indent/pug.vim +++ b/indent/pug.vim @@ -1,4 +1,4 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'jade') == -1 +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'pug') == -1 " Vim indent file " Language: Pug diff --git a/syntax/pug.vim b/syntax/pug.vim index 4848de3..d8416a8 100644 --- a/syntax/pug.vim +++ b/syntax/pug.vim @@ -1,4 +1,4 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'jade') == -1 +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'pug') == -1 " Vim syntax file " Language: Pug