annotate runtime/ftplugin/diff.vim @ 9262:c9f2b70feac0 v7.4.1914

commit https://github.com/vim/vim/commit/e429e70f050cb2941f1f8427cf918b68444c904e Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jun 10 19:49:14 2016 +0200 patch 7.4.1914 Problem: Executing autocommands while using the signal stack has a high chance of crashing Vim. Solution: Don't invoke autocommands when on the signal stack.
author Christian Brabandt <cb@256bit.org>
date Fri, 10 Jun 2016 20:00:07 +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