Skip to content

Commit

Permalink
Rename jade to pug
Browse files Browse the repository at this point in the history
  • Loading branch information
sheerun committed May 2, 2016
1 parent 81ccd02 commit 93e3f02
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion build
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ftdetect/polyglot.vim
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ftplugin/pug.vim
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion indent/pug.vim
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion syntax/pug.vim
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 93e3f02

Please sign in to comment.