summaryrefslogtreecommitdiff
path: root/uvim/runtime/syntax/updatedb.vim
diff options
context:
space:
mode:
Diffstat (limited to 'uvim/runtime/syntax/updatedb.vim')
-rw-r--r--uvim/runtime/syntax/updatedb.vim41
1 files changed, 0 insertions, 41 deletions
diff --git a/uvim/runtime/syntax/updatedb.vim b/uvim/runtime/syntax/updatedb.vim
deleted file mode 100644
index 224a7dd2c2..0000000000
--- a/uvim/runtime/syntax/updatedb.vim
+++ /dev/null
@@ -1,41 +0,0 @@
-" Vim syntax file
-" Language: updatedb.conf(5) configuration file
-" Previous Maintainer: Nikolai Weibull <now@bitwi.se>
-" Latest Revision: 2009-05-25
-
-if exists("b:current_syntax")
- finish
-endif
-
-let s:cpo_save = &cpo
-set cpo&vim
-
-syn keyword updatedbTodo contained TODO FIXME XXX NOTE
-
-syn region updatedbComment display oneline start='^\s*#' end='$'
- \ contains=updatedbTodo,@Spell
-
-syn match updatedbBegin display '^'
- \ nextgroup=updatedbName,updatedbComment skipwhite
-
-syn keyword updatedbName contained
- \ PRUNEFS
- \ PRUNENAMES
- \ PRUNEPATHS
- \ PRUNE_BIND_MOUNTS
- \ nextgroup=updatedbNameEq
-
-syn match updatedbNameEq contained display '=' nextgroup=updatedbValue
-
-syn region updatedbValue contained display oneline start='"' end='"'
-
-hi def link updatedbTodo Todo
-hi def link updatedbComment Comment
-hi def link updatedbName Identifier
-hi def link updatedbNameEq Operator
-hi def link updatedbValue String
-
-let b:current_syntax = "updatedb"
-
-let &cpo = s:cpo_save
-unlet s:cpo_save