Mercurial > vim
view runtime/ftplugin/manconf.vim @ 31041:ce04a773d598 v9.0.0855
patch 9.0.0855: comment not located above the code it refers to
Commit: https://github.com/vim/vim/commit/09a93e3e66689c691a00fce25e4ce310d81edaee
Author: zeertzjq <zeertzjq@outlook.com>
Date: Thu Nov 10 17:05:28 2022 +0000
patch 9.0.0855: comment not located above the code it refers to
Problem: Comment not located above the code it refers to.
Solution: Move the comment. (closes https://github.com/vim/vim/issues/11527)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 10 Nov 2022 18:15:04 +0100 |
parents | 1218c5353e2b |
children |
line wrap: on
line source
" Vim filetype plugin file " Language: man.conf(5) - man configuration file " Previous Maintainer: Nikolai Weibull <now@bitwi.se> " Latest Revision: 2008-07-09 if exists("b:did_ftplugin") finish endif let b:did_ftplugin = 1 let s:cpo_save = &cpo set cpo&vim let b:undo_ftplugin = "setl com< cms< fo<" setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql let &cpo = s:cpo_save unlet s:cpo_save