summaryrefslogtreecommitdiff
path: root/.vim/syntax/palmos.vim
diff options
context:
space:
mode:
authorRené Neumann <rene.neumann@in.tum.de>2012-09-04 16:20:28 +0200
committerRené Neumann <rene.neumann@in.tum.de>2012-09-04 16:20:29 +0200
commit9d8238cef09d8cb7c270b616ec56a335e0ac0854 (patch)
treea7857c65ec06a48dd575d604539d331a90c01463 /.vim/syntax/palmos.vim
parent08ae3f83268783edd51dd97a749c088007f7fea4 (diff)
downloaddotfiles-9d8238cef09d8cb7c270b616ec56a335e0ac0854.tar.gz
dotfiles-9d8238cef09d8cb7c270b616ec56a335e0ac0854.tar.bz2
dotfiles-9d8238cef09d8cb7c270b616ec56a335e0ac0854.zip
Move to bundles in vim -- also remove old craft
Diffstat (limited to '.vim/syntax/palmos.vim')
-rwxr-xr-x.vim/syntax/palmos.vim41
1 files changed, 0 insertions, 41 deletions
diff --git a/.vim/syntax/palmos.vim b/.vim/syntax/palmos.vim
deleted file mode 100755
index 2fd60cc..0000000
--- a/.vim/syntax/palmos.vim
+++ /dev/null
@@ -1,41 +0,0 @@
-" Vim syntax file
-" Language: PalmOS
-" Maintainer: René Neumann aka Necoro <necoro@zakarum.de>
-" Last Change: 2004 May 29
-
-" 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
-
-" Read the C++ syntax to start with
-if version < 600
- so <sfile>:p:h/cpp.vim
-else
- runtime! syntax/cpp.vim
- unlet b:current_syntax
-endif
-
-
-" PalmOS extentions
-syn keyword palmGenType UInt8 UInt16 UInt32 Int8 Int16 Int32 Boolean Char MemHandle MemPtr DmOpenRef WChar Err
-syn keyword palmUsefulTypes ListType ControlType FormType FieldType ScrollBarType TableType DateType DateTimeType RectangleType EventType
-syn keyword palmUsefulPtrs ListPtr ControlPtr FormPtr FieldPtr ScrollBarPtr TablePtr DatePtr DateTimePtr RectanglePtr EventPtr
-syn keyword palmNetTypes NetSocketRef NetSocketAddrType NetSocketAddrINType NetHostInfoBufType
-syn keyword palmNoDeleteNew delete new
-syn keyword palmExceptions ErrThrow ErrCatch ErrEndCatch ErrTry
-
-command -nargs=+ HiLink hi def link <args>
-
- HiLink palmExceptions Exception
- HiLink palmNoDeleteNew ErrorMsg
- HiLink palmGenType Type
- HiLink palmUsefulTypes Type
- HiLink palmUsefulPtrs Type
- HiLink palmNetTypes Type
- delcommand HiLink
-
-let b:current_syntax = "palmos"