" Vim syntax file " Language: SMITH " Maintainer: Rafal M. Sulejman " Last Change: 24.06.2000 " Remove any old syntax stuff hanging around syn clear syn case ignore syn match decNumber "\<[+-]*[1-9]\d*\>" syn match smithRegister "[A-Z]\d*[0-9]\d*" syn match smithKeyword "COR\|MOV\|MUL\|NOT\|STOP\|SUB" syn case match if !exists("did_smith_syntax_inits") let did_smith_syntax_inits = 1 " The default methods for highlighting. Can be overridden later hi link smithRegister Identifier hi link smithKeyword Keyword hi link decNumber Number endif let b:current_syntax = "smith" " vim: ts=2