view runtime/ftplugin/udevrules.vim @ 30841:9221f532df4b v9.0.0755

patch 9.0.0755: huge build on macos always fails on CI Commit: https://github.com/vim/vim/commit/d988ef3a555df2c686899a74393ed53b3186370c Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 15 10:54:27 2022 +0100 patch 9.0.0755: huge build on macos always fails on CI Problem: Huge build on macos always fails on CI. Solution: Temporarily disable the perl interface.
author Bram Moolenaar <Bram@vim.org>
date Sat, 15 Oct 2022 12:00:04 +0200
parents 1218c5353e2b
children d23645a0aca8
line wrap: on
line source

" Vim filetype plugin file
" Language:             udev(8) rules 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