Mercurial > hg > RemoteEditor > vim7
comparison runtime/ftplugin/crm.vim @ 34:e170173ecb68 current-release
before ack base protocol.
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 26 Nov 2008 15:02:10 +0900 |
parents | 76efa0be13f1 |
children |
comparison
equal
deleted
inserted
replaced
33:7d0d8b831f5a | 34:e170173ecb68 |
---|---|
1 " Vim filetype plugin file | 1 " Vim filetype plugin file |
2 " Language: CRM114 | 2 " Language: CRM114 |
3 " Maintainer: Nikolai Weibull <now@bitwi.se> | 3 " Maintainer: Nikolai Weibull <now@bitwi.se> |
4 " Latest Revision: 2006-04-19 | 4 " Latest Revision: 2008-07-09 |
5 | 5 |
6 if exists("b:did_ftplugin") | 6 if exists("b:did_ftplugin") |
7 finish | 7 finish |
8 endif | 8 endif |
9 let b:did_ftplugin = 1 | 9 let b:did_ftplugin = 1 |
10 | 10 |
11 let s:cpo_save = &cpo | |
12 set cpo&vim | |
13 | |
11 let b:undo_ftplugin = "setl com< cms< fo<" | 14 let b:undo_ftplugin = "setl com< cms< fo<" |
12 | 15 |
13 setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql | 16 setlocal comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=croql |
17 | |
18 let &cpo = s:cpo_save | |
19 unlet s:cpo_save |