annotate runtime/ftplugin/pascal.vim @ 14335:d59bf91128ea v8.1.0183

patch 8.1.0183: Lua API changed, breaking the build commit https://github.com/vim/vim/commit/174136713181a1d1460951d7a0392b16603f81bb Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 14 20:49:42 2018 +0200 patch 8.1.0183: Lua API changed, breaking the build Problem: Lua API changed, breaking the build. Solution: Adjust prototype of lua_rawgeti(). (Ken Takata, closes #3157, closes #3144)
author Christian Brabandt <cb@256bit.org>
date Sat, 14 Jul 2018 21:00:05 +0200
parents 0877b8d6370e
children e3ec2ec8841a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
1 " Vim filetype plugin file
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
2 " Language: pascal
2034
7bc41231fbc7 Update runtime files.
Bram Moolenaar <bram@zimbu.org>
parents: 507
diff changeset
3 " Maintainer: Dan Sharp <dwsharp at users dot sourceforge dot net>
2788
0877b8d6370e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
4 " Last Changed: 11 Apr 2011
2034
7bc41231fbc7 Update runtime files.
Bram Moolenaar <bram@zimbu.org>
parents: 507
diff changeset
5 " URL: http://dwsharp.users.sourceforge.net/vim/ftplugin
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
6
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
7 if exists("b:did_ftplugin") | finish | endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
8 let b:did_ftplugin = 1
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
9
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
10 if exists("loaded_matchit")
2788
0877b8d6370e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
11 let b:match_ignorecase = 1 " (pascal is case-insensitive)
0877b8d6370e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
12
0877b8d6370e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
13 let b:match_words = '\<\%(begin\|case\|record\|object\|try\)\>'
0877b8d6370e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
14 let b:match_words .= ':\<^\s*\%(except\|finally\)\>:\<end\>'
0877b8d6370e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
15 let b:match_words .= ',\<repeat\>:\<until\>'
0877b8d6370e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
16 let b:match_words .= ',\<if\>:\<else\>'
7
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
17 endif
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
18
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
19 " Undo the stuff we changed.
3fc0f57ecb91 updated for version 7.0001
vimboss
parents:
diff changeset
20 let b:undo_ftplugin = "unlet! b:match_words"