comparison runtime/syntax/readline.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 c16898406ff2
comparison
equal deleted inserted replaced
33:7d0d8b831f5a 34:e170173ecb68
1 " Vim syntax file 1 " Vim syntax file
2 " Language: readline(3) configuration file 2 " Language: readline(3) configuration file
3 " Maintainer: Nikolai Weibull <now@bitwi.se> 3 " Maintainer: Nikolai Weibull <now@bitwi.se>
4 " Latest Revision: 2006-04-19 4 " Latest Revision: 2007-06-17
5 " readline_has_bash - if defined add support for bash specific 5 " readline_has_bash - if defined add support for bash specific
6 " settings/functions 6 " settings/functions
7 7
8 if exists("b:current_syntax") 8 if exists("b:current_syntax")
9 finish 9 finish
10 endif 10 endif
11 11
12 let s:cpo_save = &cpo 12 let s:cpo_save = &cpo
13 set cpo&vim 13 set cpo&vim
14 14
15 setlocal iskeyword=@,48-57,- 15 setlocal iskeyword+=-
16 16
17 syn keyword readlineTodo contained TODO FIXME XXX NOTE 17 syn keyword readlineTodo contained TODO FIXME XXX NOTE
18 18
19 syn region readlineComment display oneline start='^\s*#' end='$' 19 syn region readlineComment display oneline start='^\s*#' end='$'
20 \ contains=readlineTodo,@Spell 20 \ contains=readlineTodo,@Spell