Merge pull request #5716 from jamessan/fix-man-plugin

ftplugin/man: Finish early if &filetype is not man
This commit is contained in:
James McCoy 2016-12-03 23:32:07 -05:00 committed by GitHub
commit cc33aebd8e

View File

@ -1,7 +1,7 @@
" Maintainer: Anmol Sethi <anmol@aubble.com>
" Previous Maintainer: SungHyun Nam <goweol@gmail.com>
if exists('b:did_ftplugin')
if exists('b:did_ftplugin') || &filetype !=# 'man'
finish
endif
let b:did_ftplugin = 1