diff options
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 |