view runtime/ftplugin/cfg.vim @ 16464:9bb2192a7c95 v8.1.1236

patch 8.1.1236: sjiscorr.c not found in shadow directory commit https://github.com/vim/vim/commit/fe368edcc00f2294e43531f72c2569aaf5964821 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Apr 29 20:30:54 2019 +0200 patch 8.1.1236: sjiscorr.c not found in shadow directory Problem: sjiscorr.c not found in shadow directory. (Tony Mechelynck) Solution: Link po/*.c files with "make shadow".
author Bram Moolenaar <Bram@vim.org>
date Mon, 29 Apr 2019 20:45:05 +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