annotate runtime/ftplugin/gitconfig.vim @ 24770:e75971b83263
v8.2.2923
patch 8.2.2923: EBCDIC build is broken
Commit: https://github.com/vim/vim/commit/eecf2b35a146d7d5512f2525ad631d796e19edac
Author: K.Takata <kentkt@csc.jp>
Date: Wed Jun 2 14:56:39 2021 +0200
patch 8.2.2923: EBCDIC build is broken
Problem: EBCDIC build is broken.
Solution: Move sortFunctions() to evalfunc.c. (Ken Takata, closes https://github.com/vim/vim/issues/8306)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Wed, 02 Jun 2021 15:00:03 +0200 |
parents |
7bc41231fbc7 |
children |
|
rev |
line source |
1624
|
1 " Vim filetype plugin
|
|
2 " Language: git config file
|
2034
|
3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org>
|
|
4 " Last Change: 2009 Dec 24
|
1624
|
5
|
|
6 " Only do this when not done yet for this buffer
|
|
7 if (exists("b:did_ftplugin"))
|
|
8 finish
|
|
9 endif
|
|
10 let b:did_ftplugin = 1
|
|
11
|
|
12 setlocal formatoptions-=t formatoptions+=croql
|
|
13 setlocal comments=:#,:; commentstring=;\ %s
|
|
14
|
|
15 let b:undo_ftplugin = "setl fo< com< cms<"
|