view runtime/ftplugin/indent.vim @ 29490:91a6d31b921c

Added tag v9.0.0086 for changeset 7c639dff32dde1373c1be13157a84f353176816e
author Bram Moolenaar <Bram@vim.org>
date Tue, 26 Jul 2022 21:45:05 +0200
parents 786b2a8ec970
children 7c7432a53a6c
line wrap: on
line source

" Vim filetype plugin file
" Language:		indent(1) configuration file
" Maintainer:		Doug Kearns <dougkearns@gmail.com>
" 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=s1:/*,mb:*,ex:*/ commentstring&
setlocal formatoptions-=t formatoptions+=croql

let &cpo = s:cpo_save
unlet s:cpo_save