annotate runtime/ftplugin/diff.vim @ 5871:b4ce0e1fb5a6 v7.4.278

updated for version 7.4.278 Problem: list_remove() conflicts with function defined in Sun header file. Solution: Rename the function. (Richard Palo)
author Bram Moolenaar <bram@vim.org>
date Wed, 07 May 2014 17:31:37 +0200
parents 7472c565592a
children 3a1ed539ae2a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
446
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
1 " Vim filetype plugin file
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
2 " Language: Diff
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
3 " Maintainer: Bram Moolenaar <Bram@vim.org>
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
4 " Last Change: 2005 Jul 27
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
5
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
6 " Only do this when not done yet for this buffer
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
7 if exists("b:did_ftplugin")
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
8 finish
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
9 endif
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
10 let b:did_ftplugin = 1
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
11
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
12 let b:undo_ftplugin = "setl modeline<"
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
13
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
14 " Don't use modelines in a diff, they apply to the diffed file
7472c565592a updated for version 7.0117
vimboss
parents:
diff changeset
15 setlocal nomodeline