mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
Merge pull request #5716 from jamessan/fix-man-plugin
ftplugin/man: Finish early if &filetype is not man
This commit is contained in:
commit
cc33aebd8e
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user