Mercurial > vim
annotate runtime/ftplugin/git.vim @ 34687:a05d2e1b7654
Added tag v9.1.0224 for changeset 83875247fbc0fe52f6cf5abd85010fa31f097fc5
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 28 Mar 2024 12:15:04 +0100 |
parents | d12fbae5b7e6 |
children |
rev | line source |
---|---|
34037
d12fbae5b7e6
runtime(git): Add small ftplugin
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
1 " Vim filetype plugin |
d12fbae5b7e6
runtime(git): Add small ftplugin
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
2 " Language: generic git output |
d12fbae5b7e6
runtime(git): Add small ftplugin
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
3 " Maintainer: Tim Pope <vimNOSPAM@tpope.org> |
d12fbae5b7e6
runtime(git): Add small ftplugin
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
4 " Last Change: 2023 Mar 26 |
d12fbae5b7e6
runtime(git): Add small ftplugin
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
5 |
d12fbae5b7e6
runtime(git): Add small ftplugin
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
6 " Only do this when not done yet for this buffer |
d12fbae5b7e6
runtime(git): Add small ftplugin
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
7 if (exists("b:did_ftplugin")) |
d12fbae5b7e6
runtime(git): Add small ftplugin
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
8 finish |
d12fbae5b7e6
runtime(git): Add small ftplugin
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
9 endif |
d12fbae5b7e6
runtime(git): Add small ftplugin
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
10 |
d12fbae5b7e6
runtime(git): Add small ftplugin
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
11 let b:did_ftplugin = 1 |
d12fbae5b7e6
runtime(git): Add small ftplugin
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
12 |
d12fbae5b7e6
runtime(git): Add small ftplugin
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
13 setlocal nomodeline |
d12fbae5b7e6
runtime(git): Add small ftplugin
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
14 |
d12fbae5b7e6
runtime(git): Add small ftplugin
Christian Brabandt <cb@256bit.org>
parents:
diff
changeset
|
15 let b:undo_ftplugin = "setl modeline<" |