view runtime/ftplugin/help.vim @ 31523:25d8ba667c5a v9.0.1094

patch 9.0.1094: compiler warning when HAS_MESSAGE_WINDOW is not defined Commit: https://github.com/vim/vim/commit/9b99411b93f017609399e04527fdd3b6e83b5a55 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Dec 25 15:59:25 2022 +0000 patch 9.0.1094: compiler warning when HAS_MESSAGE_WINDOW is not defined Problem: Compiler warning when HAS_MESSAGE_WINDOW is not defined. Solution: Add UNUSED.
author Bram Moolenaar <Bram@vim.org>
date Sun, 25 Dec 2022 17:00:05 +0100
parents 9d3d7b0f4861
children
line wrap: on
line source

" Vim filetype plugin file
" Language:             Vim help file
" Previous Maintainer:  Nikolai Weibull <now@bitwi.se>
" Latest Revision:      2018-12-29

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 fo< tw< cole< cocu< keywordprg<"

setlocal formatoptions+=tcroql textwidth=78 keywordprg=:help
if has("conceal")
  setlocal cole=2 cocu=nc
endif

let &cpo = s:cpo_save
unlet s:cpo_save