diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2016-05-02 10:42:37 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2016-05-02 10:42:37 +0200 |
commit | 5dd1a7e83966c92d220073185f1738dfe441f59e (patch) | |
tree | 9c4bee389a51a9bb111dcc894c9db0f6d1809d81 /ftplugin/pug.vim | |
parent | bc098370c1bb81840734f5764f431dee270e75ce (diff) | |
download | vim-polyglot-5dd1a7e83966c92d220073185f1738dfe441f59e.tar.gz vim-polyglot-5dd1a7e83966c92d220073185f1738dfe441f59e.zip |
Update
Diffstat (limited to '')
-rw-r--r-- | ftplugin/pug.vim (renamed from ftplugin/jade.vim) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ftplugin/jade.vim b/ftplugin/pug.vim index 1cf5015f..c2b622f7 100644 --- a/ftplugin/jade.vim +++ b/ftplugin/pug.vim @@ -1,7 +1,7 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'jade') == -1 " Vim filetype plugin -" Language: Jade +" Language: Pug " Maintainer: Joshua Borton " Credits: Tim Pope @@ -39,7 +39,7 @@ endif " Change the browse dialog on Win32 to show mainly Haml-related files if has("gui_win32") - let b:browsefilter="Jade Files (*.jade)\t*.jade\n" . s:browsefilter + let b:browsefilter="Pug Files (*.pug)\t*.pug\n" . s:browsefilter endif " Load the combined list of match_words for matchit.vim @@ -49,7 +49,7 @@ endif setlocal comments=://-,:// commentstring=//\ %s -setlocal suffixesadd+=.jade +setlocal suffixesadd+=.pug let b:undo_ftplugin = "setl cms< com< " \ " | unlet! b:browsefilter b:match_words | " . s:undo_ftplugin |