view runtime/ftplugin/group.vim @ 11362:2c2b7f486fb0 v8.0.0566

patch 8.0.0566: setting nocompatible for the tiny version moves the cursor commit https://github.com/vim/vim/commit/43d1ac6e81a6796f2e6b3514bbe029cf9bd0a0ae Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 15 15:37:25 2017 +0200 patch 8.0.0566: setting nocompatible for the tiny version moves the cursor Problem: Setting nocompatible for the tiny version moves the cursor. Solution: Use another trick to skip commands when the +eval feature is present. (Christian Brabandt, closes #1630)
author Christian Brabandt <cb@256bit.org>
date Sat, 15 Apr 2017 15:45:03 +0200
parents 1218c5353e2b
children
line wrap: on
line source

" Vim filetype plugin file
" Language:             group(5) user group 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= formatoptions-=tcroq formatoptions+=l

let &cpo = s:cpo_save
unlet s:cpo_save