diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-26 08:45:34 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-26 08:45:34 +0100 |
commit | 740a60811c4647eecf3e2f82a24dccc1abbd686a (patch) | |
tree | bbd2f09772ccdbb9ee846522ac14779477917b53 /autoload | |
parent | 28388008327aacfc48db3c31f415564d93cd983f (diff) | |
download | vim-polyglot-740a60811c4647eecf3e2f82a24dccc1abbd686a.tar.gz vim-polyglot-740a60811c4647eecf3e2f82a24dccc1abbd686a.zip |
Use nroff filetype for man pages, closes #611
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/polyglot/sleuth.vim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/autoload/polyglot/sleuth.vim b/autoload/polyglot/sleuth.vim index b5b30ab8..a23a2ab5 100644 --- a/autoload/polyglot/sleuth.vim +++ b/autoload/polyglot/sleuth.vim @@ -315,7 +315,6 @@ let s:globs = { \ 'make': '*.mak,*.dsp,*.mk,*[mM]akefile', \ 'mako': '*.mako,*.mao', \ 'mallard': '*.page', - \ 'man': '*.1,*.1in,*.1m,*.1x,*.2,*.3,*.3in,*.3m,*.3p,*.3pm,*.3qt,*.3x,*.4,*.5,*.6,*.7,*.8,*.9,*.man,*.mdoc', \ 'manconf': 'man.config', \ 'map': '*.map', \ 'maple': '*.mv,*.mpl,*.mws', @@ -361,7 +360,7 @@ let s:globs = { \ 'ninja': '*.ninja', \ 'nix': '*.nix', \ 'nqc': '*.nqc', - \ 'nroff': '*.tr,*.nr,*.roff,*.tmac,*.mom,tmac.*', + \ 'nroff': '*.1,*.1in,*.1m,*.1x,*.2,*.3,*.3in,*.3m,*.3p,*.3pm,*.3qt,*.3x,*.4,*.5,*.6,*.7,*.8,*.9,*.man,*.mdoc,*.tr,*.nr,*.roff,*.tmac,*.mom,tmac.*', \ 'nsis': '*.nsi,*.nsh', \ 'oasis': '_oasis', \ 'obj': '*.obj', |