view runtime/ftplugin/yaml.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 1218c5353e2b
children 847a300aa244
line wrap: on
line source

" Vim filetype plugin file
" Language:             YAML (YAML Ain't Markup Language)
" 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< et< fo<"

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

let &cpo = s:cpo_save
unlet s:cpo_save