view runtime/ftplugin/xdefaults.vim @ 35138:98327050d01d default tip

runtime(spec): add new items to scripts section in syntax plugin Commit: https://github.com/vim/vim/commit/cb3691811be93b2c49179649c684d6ce2141a46f Author: Maxwell G <maxwell@gtmx.me> Date: Wed May 8 20:27:58 2024 +0200 runtime(spec): add new items to scripts section in syntax plugin - %generate_buildrequires ? added in RPM 4.15 - %conf ? added in RPM 4.18 closes: #14723 Ref: https://rpm-software-management.github.io/rpm/manual/spec.html#build-scriptlets Signed-off-by: author Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 08 May 2024 20:30:08 +0200
parents 1218c5353e2b
children
line wrap: on
line source

" Vim filetype plugin file
" Language:             X resources files like ~/.Xdefaults (xrdb)
" 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< inc< fo<"

setlocal comments=s1:/*,mb:*,ex:*/,:! commentstring& inc&
setlocal formatoptions-=t formatoptions+=croql

let &cpo = s:cpo_save
unlet s:cpo_save