view runtime/ftplugin/sudoers.vim @ 30632:8c0232ab725c v9.0.0651

patch 9.0.0651: build fails without the +conceal feature Commit: https://github.com/vim/vim/commit/eb47d6d20a47707d810360fd1684b21f67d5dec8 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Oct 3 17:45:55 2022 +0100 patch 9.0.0651: build fails without the +conceal feature Problem: Build fails without the +conceal feature. Solution: Rename called function.
author Bram Moolenaar <Bram@vim.org>
date Mon, 03 Oct 2022 19:00:03 +0200
parents 1218c5353e2b
children d23645a0aca8
line wrap: on
line source

" Vim filetype plugin file
" Language:             sudoers(5) configuration files
" 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