mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 19:25:11 -07:00
a98a6996c2
Vim runtime files based on 7.4.384 / hg changeset 7090d7f160f7 Excluding: Amiga icons (*.info, icons/) doc/hangulin.txt tutor/ spell/ lang/ (only used for menu translations) macros/maze/, macros/hanoi/, macros/life/, macros/urm/ These were used to test vi compatibility. termcap "Demonstration of a termcap file (for the Amiga and Archimedes)" Helped-by: Rich Wareham <rjw57@cam.ac.uk> Helped-by: John <john.schmidt.h@gmail.com> Helped-by: Yann <yann@yann-salaun.com> Helped-by: Christophe Badoit <c.badoit@lesiteimmo.com> Helped-by: drasill <github@tof2k.com> Helped-by: Tae Sandoval Murgan <taecilla@gmail.com> Helped-by: Lowe Thiderman <lowe.thiderman@gmail.com>
90 lines
2.9 KiB
VimL
90 lines
2.9 KiB
VimL
" Vim syntax file
|
|
" Language: SQL, PL/SQL (Oracle 8i)
|
|
" Maintainer: Paul Moore <pf_moore AT yahoo.co.uk>
|
|
" Last Change: 2005 Dec 23
|
|
|
|
" 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
|
|
|
|
syn case ignore
|
|
|
|
" The SQL reserved words, defined as keywords.
|
|
|
|
syn keyword sqlSpecial false null true
|
|
|
|
syn keyword sqlKeyword access add as asc begin by check cluster column
|
|
syn keyword sqlKeyword compress connect current cursor decimal default desc
|
|
syn keyword sqlKeyword else elsif end exception exclusive file for from
|
|
syn keyword sqlKeyword function group having identified if immediate increment
|
|
syn keyword sqlKeyword index initial into is level loop maxextents mode modify
|
|
syn keyword sqlKeyword nocompress nowait of offline on online start
|
|
syn keyword sqlKeyword successful synonym table then to trigger uid
|
|
syn keyword sqlKeyword unique user validate values view whenever
|
|
syn keyword sqlKeyword where with option order pctfree privileges procedure
|
|
syn keyword sqlKeyword public resource return row rowlabel rownum rows
|
|
syn keyword sqlKeyword session share size smallint type using
|
|
|
|
syn keyword sqlOperator not and or
|
|
syn keyword sqlOperator in any some all between exists
|
|
syn keyword sqlOperator like escape
|
|
syn keyword sqlOperator union intersect minus
|
|
syn keyword sqlOperator prior distinct
|
|
syn keyword sqlOperator sysdate out
|
|
|
|
syn keyword sqlStatement alter analyze audit comment commit create
|
|
syn keyword sqlStatement delete drop execute explain grant insert lock noaudit
|
|
syn keyword sqlStatement rename revoke rollback savepoint select set
|
|
syn keyword sqlStatement truncate update
|
|
|
|
syn keyword sqlType boolean char character date float integer long
|
|
syn keyword sqlType mlslabel number raw rowid varchar varchar2 varray
|
|
|
|
" Strings and characters:
|
|
syn region sqlString start=+"+ skip=+\\\\\|\\"+ end=+"+
|
|
syn region sqlString start=+'+ skip=+\\\\\|\\'+ end=+'+
|
|
|
|
" Numbers:
|
|
syn match sqlNumber "-\=\<\d*\.\=[0-9_]\>"
|
|
|
|
" Comments:
|
|
syn region sqlComment start="/\*" end="\*/" contains=sqlTodo
|
|
syn match sqlComment "--.*$" contains=sqlTodo
|
|
|
|
syn sync ccomment sqlComment
|
|
|
|
" Todo.
|
|
syn keyword sqlTodo contained TODO FIXME XXX DEBUG NOTE
|
|
|
|
" Define the default highlighting.
|
|
" For version 5.7 and earlier: only when not done already
|
|
" For version 5.8 and later: only when an item doesn't have highlighting yet
|
|
if version >= 508 || !exists("did_sql_syn_inits")
|
|
if version < 508
|
|
let did_sql_syn_inits = 1
|
|
command -nargs=+ HiLink hi link <args>
|
|
else
|
|
command -nargs=+ HiLink hi def link <args>
|
|
endif
|
|
|
|
HiLink sqlComment Comment
|
|
HiLink sqlKeyword sqlSpecial
|
|
HiLink sqlNumber Number
|
|
HiLink sqlOperator sqlStatement
|
|
HiLink sqlSpecial Special
|
|
HiLink sqlStatement Statement
|
|
HiLink sqlString String
|
|
HiLink sqlType Type
|
|
HiLink sqlTodo Todo
|
|
|
|
delcommand HiLink
|
|
endif
|
|
|
|
let b:current_syntax = "sql"
|
|
|
|
" vim: ts=8
|