view runtime/ftplugin/openvpn.vim @ 32035:d21e867c517e v9.0.1349

patch 9.0.1349: "gr" with a count fails Commit: https://github.com/vim/vim/commit/3ddb1182b7b8d376e59b444f6b3e213f0dcd3417 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Feb 23 22:14:37 2023 +0000 patch 9.0.1349: "gr" with a count fails Problem: "gr" with a count fails. Solution: Break out of the loop only after using the count.
author Bram Moolenaar <Bram@vim.org>
date Thu, 23 Feb 2023 23:15:03 +0100
parents eb2638f278bf
children 7c7432a53a6c
line wrap: on
line source

" Vim filetype plugin
" Language:	OpenVPN
" Maintainer:	ObserverOfTime <chronobserver@disroot.org>
" Last Change:	2022 Oct 16

if exists('b:did_ftplugin')
  finish
endif
let b:did_ftplugin = 1

setlocal iskeyword+=-,.,/
setlocal comments=:#,:; commentstring=#%s

let b:undo_ftplugin = 'setl isk< com< cms<'