diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2016-05-02 11:52:54 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2016-05-02 11:52:54 +0200 |
commit | 93e3f020a9637b3df9109348cef5fcc3e0bbda43 (patch) | |
tree | 19c6ad241f33729e4e9029a15420469df8c8de39 | |
parent | 81ccd020323492a2ca471e561ff7c794dbfc5d8f (diff) | |
download | vim-polyglot-2.8.0.tar.gz vim-polyglot-2.8.0.zip |
Rename jade to pugv2.8.0
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | build | 2 | ||||
-rw-r--r-- | ftdetect/polyglot.vim | 2 | ||||
-rw-r--r-- | ftplugin/pug.vim | 2 | ||||
-rw-r--r-- | indent/pug.vim | 2 | ||||
-rw-r--r-- | syntax/pug.vim | 2 |
6 files changed, 6 insertions, 6 deletions
@@ -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) @@ -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 6de33bd0..3866d907 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 c2b622f7..dea25f68 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 6518d7c3..0f0a4388 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 4848de3d..d8416a88 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 |