diff options
author | Anmol Sethi <nhooyr@users.noreply.github.com> | 2017-01-04 07:01:03 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-01-04 13:01:03 +0100 |
commit | d8a97d7b7912ae981c3b904ccbd014b2f2da1832 (patch) | |
tree | 32e320ed2d6ce298e44ecd0eefb12142b478aee3 | |
parent | 6f9be2464c9385d0f3c8a7bd6a10e765826ceddf (diff) | |
download | rneovim-d8a97d7b7912ae981c3b904ccbd014b2f2da1832.tar.gz rneovim-d8a97d7b7912ae981c3b904ccbd014b2f2da1832.tar.bz2 rneovim-d8a97d7b7912ae981c3b904ccbd014b2f2da1832.zip |
man.vim: do not set ft=man on files with extension man (#5831)
Closes #5806
-rw-r--r-- | runtime/filetype.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index e3447670f4..93886d5379 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1143,7 +1143,7 @@ au BufNewFile,BufRead *.ist,*.mst setf ist au BufNewFile,BufRead *.page setf mallard " Manpage -au BufNewFile,BufRead *.man setf man +au BufNewFile,BufRead *.man setf nroff " Man config au BufNewFile,BufRead */etc/man.conf,man.config setf manconf |