Mercurial > vim
view runtime/ftplugin/pascal.vim @ 10829:8233f8f3f7ae v8.0.0304
patch 8.0.0304: assign test fails in the GUI
commit https://github.com/vim/vim/commit/1fb0d49803b4f57025ed6a43b1f5b9eb91524645
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Feb 4 21:50:19 2017 +0100
patch 8.0.0304: assign test fails in the GUI
Problem: Assign test fails in the GUI.
Solution: Skip the test for setting t_k1.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 04 Feb 2017 22:00:04 +0100 |
parents | 0877b8d6370e |
children | e3ec2ec8841a |
line wrap: on
line source
" Vim filetype plugin file " Language: pascal " Maintainer: Dan Sharp <dwsharp at users dot sourceforge dot net> " Last Changed: 11 Apr 2011 " URL: http://dwsharp.users.sourceforge.net/vim/ftplugin if exists("b:did_ftplugin") | finish | endif let b:did_ftplugin = 1 if exists("loaded_matchit") let b:match_ignorecase = 1 " (pascal is case-insensitive) let b:match_words = '\<\%(begin\|case\|record\|object\|try\)\>' let b:match_words .= ':\<^\s*\%(except\|finally\)\>:\<end\>' let b:match_words .= ',\<repeat\>:\<until\>' let b:match_words .= ',\<if\>:\<else\>' endif " Undo the stuff we changed. let b:undo_ftplugin = "unlet! b:match_words"