annotate runtime/ftplugin/diff.vim @ 12688:a6a935b3270e v8.0.1222

patch 8.0.1222: test functions interfere with each other commit https://github.com/vim/vim/commit/ce11de87e26e1420703242f8e07b4fd69c4032ba Author: Bram Moolenaar <Bram@vim.org> Date: Thu Oct 26 22:00:00 2017 +0200 patch 8.0.1222: test functions interfere with each other Problem: Test functions interfere with each other. Solution: Cleanup tab pages, windows and buffers. Reset option.
author Christian Brabandt <cb@256bit.org>
date Thu, 26 Oct 2017 22:15:04 +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