view runtime/ftplugin/cfg.vim @ 18461:7f16792d15f7 v8.1.2224

patch 8.1.2224: cannot build Amiga version Commit: https://github.com/vim/vim/commit/dfded98f87601b11271ee88392c821ceb6390eda Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 26 21:33:19 2019 +0200 patch 8.1.2224: cannot build Amiga version Problem: Cannot build Amiga version. Solution: Add dummy mch_setmouse(). (Ola S?der, closes https://github.com/vim/vim/issues/5126)
author Bram Moolenaar <Bram@vim.org>
date Sat, 26 Oct 2019 21:45:03 +0200
parents 97b40b4c6911
children
line wrap: on
line source

" Vim filetype plugin file
" Language:		Configuration File
" Maintainer:		Christian Brabandt <cb@256bit.org>
" Latest Revision:	2018-12-24

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 cms< fo<"

setlocal commentstring=#\ %s formatoptions-=t formatoptions+=croql

let &cpo = s:cpo_save
unlet s:cpo_save