view runtime/ftplugin/gpg.vim @ 30407:cc3b3fd9cb27 v9.0.0539

patch 9.0.0539: long message test can be flaky Commit: https://github.com/vim/vim/commit/21d393a12be86126d9326ea0c244d3a101b77151 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Sep 22 12:01:34 2022 +0100 patch 9.0.0539: long message test can be flaky Problem: Long message test can be flaky. Solution: Wait for more prompt instead of ruler.
author Bram Moolenaar <Bram@vim.org>
date Thu, 22 Sep 2022 13:15:04 +0200
parents 1218c5353e2b
children d23645a0aca8
line wrap: on
line source

" Vim filetype plugin file
" Language:             gpg(1) 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