11 lines
235 B
VimL
11 lines
235 B
VimL
if exists("b:current_syntax")
|
|
finish
|
|
endif
|
|
|
|
syn match oilCreate /^CREATE /
|
|
syn match oilMove /^ MOVE /
|
|
syn match oilDelete /^DELETE /
|
|
syn match oilCopy /^ COPY /
|
|
syn match oilChange /^CHANGE /
|
|
|
|
let b:current_syntax = "oil_preview"
|