summaryrefslogtreecommitdiffstats
path: root/vim/vim-7.2/syntax/taskdata.vim
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@server-speed.net>2011-02-06 20:37:35 +0100
committerFlorian Pritz <bluewind@server-speed.net>2011-02-06 20:37:35 +0100
commit9f140581e08b255697a4d824ac57559a04c416e0 (patch)
tree89ad82ae13c3028c1f6d5e188d71a30dcb76ebff /vim/vim-7.2/syntax/taskdata.vim
parentae04b18175c5b37bfe8758f8ecec59f486586e7e (diff)
downloadaur-packages-9f140581e08b255697a4d824ac57559a04c416e0.tar.gz
aur-packages-9f140581e08b255697a4d824ac57559a04c416e0.tar.xz
misc updates
Signed-off-by: Florian Pritz <bluewind@server-speed.net>
Diffstat (limited to 'vim/vim-7.2/syntax/taskdata.vim')
-rw-r--r--vim/vim-7.2/syntax/taskdata.vim43
1 files changed, 0 insertions, 43 deletions
diff --git a/vim/vim-7.2/syntax/taskdata.vim b/vim/vim-7.2/syntax/taskdata.vim
deleted file mode 100644
index 79186e0..0000000
--- a/vim/vim-7.2/syntax/taskdata.vim
+++ /dev/null
@@ -1,43 +0,0 @@
-" Vim syntax file
-" Language: task data
-" Maintainer: John Florian <jflorian@doubledog.org>
-" Updated: Wed Jul 8 19:46:20 EDT 2009
-
-
-" For version 5.x: Clear all syntax items.
-" For version 6.x: Quit when a syntax file was already loaded.
-if version < 600
- syntax clear
-elseif exists("b:current_syntax")
- finish
-endif
-
-" Key Names for values.
-syn keyword taskdataKey description due end entry imask mask parent
-syn keyword taskdataKey priority project recur start status tags uuid
-syn match taskdataKey "annotation_\d\+"
-syn match taskdataUndo "^time.*$"
-syn match taskdataUndo "^\(old \|new \|---\)"
-
-" Values associated with key names.
-"
-" Strings
-syn region taskdataString matchgroup=Normal start=+"+ end=+"+
- \ contains=taskdataEncoded,taskdataUUID,@Spell
-"
-" Special Embedded Characters (e.g., "&comma;")
-syn match taskdataEncoded "&\a\+;" contained
-" UUIDs
-syn match taskdataUUID "\x\{8}-\(\x\{4}-\)\{3}\x\{12}" contained
-
-
-" The default methods for highlighting. Can be overridden later.
-hi def link taskdataEncoded Function
-hi def link taskdataKey Statement
-hi def link taskdataString String
-hi def link taskdataUUID Special
-hi def link taskdataUndo Type
-
-let b:current_syntax = "taskdata"
-
-" vim:noexpandtab