view runtime/ftplugin/gitconfig.vim @ 23160:19575087e859 v8.2.2126

patch 8.2.2126: Ruby: missing function prototype Commit: https://github.com/vim/vim/commit/0e12140550a63bb1e45771edb89b941959440cfe Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 10 20:50:34 2020 +0100 patch 8.2.2126: Ruby: missing function prototype Problem: Ruby: missing function prototype. Solution: Add the prototype.
author Bram Moolenaar <Bram@vim.org>
date Thu, 10 Dec 2020 21:00:04 +0100
parents 7bc41231fbc7
children
line wrap: on
line source

" Vim filetype plugin
" Language:	git config file
" Maintainer:	Tim Pope <vimNOSPAM@tpope.org>
" Last Change:	2009 Dec 24

" Only do this when not done yet for this buffer
if (exists("b:did_ftplugin"))
  finish
endif
let b:did_ftplugin = 1

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

let b:undo_ftplugin = "setl fo< com< cms<"