Skip to content

Commit 93e3f02

Browse files
committed
Rename jade to pug
1 parent 81ccd02 commit 93e3f02

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ Optionally download one of the [releases](https://github.com/sheerun/vim-polyglo
5555
- [haskell](https://github.com/neovimhaskell/haskell-vim) (syntax, indent, ftplugin, ftdetect)
5656
- [haxe](https://github.com/yaymukund/vim-haxe) (syntax, ftdetect)
5757
- [html5](https://github.com/othree/html5.vim) (syntax, indent, autoload, ftplugin)
58-
- [jade](https://github.com/digitaltoad/vim-jade) (syntax, indent, ftplugin, ftdetect)
5958
- [jasmine](https://github.com/glanotte/vim-jasmine) (syntax, ftdetect)
6059
- [javascript](https://github.com/sheerun/yajs.vim) (syntax, indent)
6160
- [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
8079
- [plantuml](https://github.com/aklt/plantuml-syntax) (syntax, ftplugin, ftdetect)
8180
- [powershell](https://github.com/Persistent13/vim-ps1) (syntax, indent, ftplugin, ftdetect)
8281
- [protobuf](https://github.com/uarun/vim-protobuf) (syntax, ftdetect)
82+
- [pug](https://github.com/digitaltoad/vim-pug) (syntax, indent, ftplugin, ftdetect)
8383
- [puppet](https://github.com/voxpupuli/vim-puppet) (syntax, indent, ftplugin, ftdetect)
8484
- [purescript](https://github.com/raichoo/purescript-vim) (syntax, indent, ftdetect)
8585
- [python](https://github.com/mitsuhiko/vim-python-combined) (syntax, indent)

build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ PACKS="
126126
haskell:neovimhaskell/haskell-vim
127127
haxe:yaymukund/vim-haxe
128128
html5:othree/html5.vim
129-
jade:digitaltoad/vim-jade
130129
jasmine:glanotte/vim-jasmine
131130
javascript:sheerun/yajs.vim
132131
json:sheerun/vim-json
@@ -151,6 +150,7 @@ PACKS="
151150
plantuml:aklt/plantuml-syntax
152151
powershell:Persistent13/vim-ps1
153152
protobuf:uarun/vim-protobuf
153+
pug:digitaltoad/vim-pug
154154
puppet:voxpupuli/vim-puppet
155155
purescript:raichoo/purescript-vim
156156
python:mitsuhiko/vim-python-combined

ftdetect/polyglot.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'powershell') ==
357357

358358
au BufNewFile,BufRead *.ps1xml set ft=ps1xml
359359
endif
360-
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'jade') == -1
360+
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'pug') == -1
361361

362362
autocmd BufNewFile,BufReadPost *.pug set filetype=pug
363363
autocmd BufNewFile,BufReadPost *.jade set filetype=pug

ftplugin/pug.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'jade') == -1
1+
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'pug') == -1
22

33
" Vim filetype plugin
44
" Language: Pug

indent/pug.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'jade') == -1
1+
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'pug') == -1
22

33
" Vim indent file
44
" Language: Pug

syntax/pug.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'jade') == -1
1+
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'pug') == -1
22

33
" Vim syntax file
44
" Language: Pug

0 commit comments

Comments
 (0)