comparison runtime/ftplugin/hamster.vim @ 11160:d0a20101ecb2

Update runtime files. commit https://github.com/vim/vim/commit/036986f1507d223549d110af300144468bd3a1f7 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 16 17:41:02 2017 +0100 Update runtime files.
author Christian Brabandt <cb@256bit.org>
date Thu, 16 Mar 2017 17:45:05 +0100
parents 94601b379f38
children 146a1e213b60
comparison
equal deleted inserted replaced
11159:c13ab9398ce9 11160:d0a20101ecb2
1 " Vim filetype plugin 1 " Vim filetype plugin
2 " Language: Hamster Script 2 " Language: Hamster Script
3 " Version: 2.0.6.0 3 " Version: 2.0.6.0
4 " Maintainer: David Fishburn <fishburn@ianywhere.com> 4 " Maintainer: David Fishburn <dfishburn dot vim at gmail dot com>
5 " Last Change: Wed Nov 08 2006 12:03:09 PM 5 " Last Change: 2017 Mar 07
6 6
7 " Only do this when not done yet for this buffer 7 " Only do this when not done yet for this buffer
8 if exists("b:did_ftplugin") 8 if exists("b:did_ftplugin")
9 finish 9 finish
10 endif 10 endif
11 11
12 " Don't load another plugin for this buffer 12 " Don't load another plugin for this buffer
13 let b:did_ftplugin = 1 13 let b:did_ftplugin = 1
14 14
15 let s:cpo_save = &cpo 15 let s:cpo_save = &cpo
16 set cpo&vim
16 set cpo-=C 17 set cpo-=C
17 18
18 let b:undo_ftplugin = "setl fo< com< tw< commentstring<" 19 let b:undo_ftplugin = "setl fo< com< tw< commentstring<"
19 \ . "| unlet! b:match_ignorecase b:match_words b:match_skip" 20 \ . "| unlet! b:match_ignorecase b:match_words b:match_skip"
20 21