From 87e25fdf80c7b45deee9c59389b51503e906d93b Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 27 Jul 2005 21:13:01 +0000 Subject: updated for version 7.0117 --- runtime/ftplugin/diff.vim | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 runtime/ftplugin/diff.vim (limited to 'runtime/ftplugin/diff.vim') diff --git a/runtime/ftplugin/diff.vim b/runtime/ftplugin/diff.vim new file mode 100644 index 000000000..3fe1b84a0 --- /dev/null +++ b/runtime/ftplugin/diff.vim @@ -0,0 +1,15 @@ +" Vim filetype plugin file +" Language: Diff +" Maintainer: Bram Moolenaar +" Last Change: 2005 Jul 27 + +" Only do this when not done yet for this buffer +if exists("b:did_ftplugin") + finish +endif +let b:did_ftplugin = 1 + +let b:undo_ftplugin = "setl modeline<" + +" Don't use modelines in a diff, they apply to the diffed file +setlocal nomodeline -- cgit v1.2.1