114 lines
6.0 KiB
VimL
114 lines
6.0 KiB
VimL
" FILE: syntax/conque_term.vim {{{
|
|
" AUTHOR: Nico Raffo <nicoraffo@gmail.com>
|
|
" WEBSITE: http://conque.googlecode.com
|
|
" MODIFIED: 2011-09-02
|
|
" VERSION: 2.3, for Vim 7.0
|
|
" LICENSE:
|
|
" Conque - Vim terminal/console emulator
|
|
" Copyright (C) 2009-2011 Nico Raffo
|
|
"
|
|
" MIT License
|
|
"
|
|
" Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
" of this software and associated documentation files (the "Software"), to deal
|
|
" in the Software without restriction, including without limitation the rights
|
|
" to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
" copies of the Software, and to permit persons to whom the Software is
|
|
" furnished to do so, subject to the following conditions:
|
|
"
|
|
" The above copyright notice and this permission notice shall be included in
|
|
" all copies or substantial portions of the Software.
|
|
"
|
|
" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
" IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
" FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
" AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
" LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
" OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
" THE SOFTWARE.
|
|
" }}}
|
|
|
|
|
|
" *******************************************************************************************************************
|
|
" MySQL *************************************************************************************************************
|
|
" *******************************************************************************************************************
|
|
|
|
" TODO Move these to syntax which is only executed for mysql
|
|
"syn match MySQLTableBodyG "^\s*\w\+:\(.\+\)\=$" contains=MySQLTableHeadG,MySQLNullG,MySQLBool,MySQLNumberG,MySQLStorageClass oneline skipwhite skipnl
|
|
"syn match MySQLTableHeadG "^\s*\w\+:" contains=MySQLTableColon skipwhite contained
|
|
"syn match MySQLTableColon ":" contained
|
|
|
|
syn match MySQLTableHead "^ *|.*| *$" nextgroup=MySQLTableDivide contains=MySQLTableBar oneline skipwhite skipnl
|
|
syn match MySQLTableBody "^ *|.*| *$" nextgroup=MySQLTableBody,MySQLTableEnd contains=MySQLTableBar,MySQLNull,MySQLBool,MySQLNumber,MySQLStorageClass oneline skipwhite skipnl
|
|
syn match MySQLTableEnd "^ *+[+=-]\++ *$" oneline
|
|
syn match MySQLTableDivide "^ *+[+=-]\++ *$" nextgroup=MySQLTableBody oneline skipwhite skipnl
|
|
syn match MySQLTableStart "^ *+[+=-]\++ *$" nextgroup=MySQLTableHead oneline skipwhite skipnl
|
|
syn match MySQLNull " NULL " contained contains=MySQLTableBar
|
|
syn match MySQLStorageClass " PRI " contained
|
|
syn match MySQLStorageClass " MUL " contained
|
|
syn match MySQLStorageClass " UNI " contained
|
|
syn match MySQLStorageClass " CURRENT_TIMESTAMP " contained
|
|
syn match MySQLStorageClass " auto_increment " contained
|
|
syn match MySQLTableBar "|" contained
|
|
syn match MySQLNumber "|\? *\d\+\(\.\d\+\)\? *|" contained contains=MySQLTableBar
|
|
syn match MySQLQueryStat "^\d\+ rows\? in set.*" oneline
|
|
syn match MySQLPromptLine "^.\?mysql> .*$" contains=MySQLKeyword,MySQLPrompt,MySQLString oneline
|
|
syn match MySQLPromptLine "^ -> .*$" contains=MySQLKeyword,MySQLPrompt,MySQLString oneline
|
|
syn match MySQLPrompt "^.\?mysql>" contained oneline
|
|
syn match MySQLPrompt "^ ->" contained oneline
|
|
syn case ignore
|
|
syn keyword MySQLKeyword select count max sum avg date show table tables status like as from left right outer inner join contained
|
|
syn keyword MySQLKeyword where group by having limit offset order desc asc show contained and interval is null on
|
|
syn case match
|
|
syn region MySQLString start=+'+ end=+'+ skip=+\\'+ contained oneline
|
|
syn region MySQLString start=+"+ end=+"+ skip=+\\"+ contained oneline
|
|
syn region MySQLString start=+`+ end=+`+ skip=+\\`+ contained oneline
|
|
|
|
|
|
hi def link MySQLPrompt Identifier
|
|
hi def link MySQLTableHead Title
|
|
hi def link MySQLTableBody Normal
|
|
hi def link MySQLBool Boolean
|
|
hi def link MySQLStorageClass StorageClass
|
|
hi def link MySQLNumber Number
|
|
hi def link MySQLKeyword Keyword
|
|
hi def link MySQLString String
|
|
|
|
" terms which have no reasonable default highlight group to link to
|
|
hi MySQLTableHead term=bold cterm=bold gui=bold
|
|
if &background == 'dark'
|
|
hi MySQLTableEnd term=NONE cterm=NONE gui=NONE ctermfg=238 guifg=#444444
|
|
hi MySQLTableDivide term=NONE cterm=NONE gui=NONE ctermfg=238 guifg=#444444
|
|
hi MySQLTableStart term=NONE cterm=NONE gui=NONE ctermfg=238 guifg=#444444
|
|
hi MySQLTableBar term=NONE cterm=NONE gui=NONE ctermfg=238 guifg=#444444
|
|
hi MySQLNull term=NONE cterm=NONE gui=NONE ctermfg=238 guifg=#444444
|
|
hi MySQLQueryStat term=NONE cterm=NONE gui=NONE ctermfg=238 guifg=#444444
|
|
elseif &background == 'light'
|
|
hi MySQLTableEnd term=NONE cterm=NONE gui=NONE ctermfg=247 guifg=#9e9e9e
|
|
hi MySQLTableDivide term=NONE cterm=NONE gui=NONE ctermfg=247 guifg=#9e9e9e
|
|
hi MySQLTableStart term=NONE cterm=NONE gui=NONE ctermfg=247 guifg=#9e9e9e
|
|
hi MySQLTableBar term=NONE cterm=NONE gui=NONE ctermfg=247 guifg=#9e9e9e
|
|
hi MySQLNull term=NONE cterm=NONE gui=NONE ctermfg=247 guifg=#9e9e9e
|
|
hi MySQLQueryStat term=NONE cterm=NONE gui=NONE ctermfg=247 guifg=#9e9e9e
|
|
endif
|
|
|
|
|
|
" *******************************************************************************************************************
|
|
" Bash **************************************************************************************************************
|
|
" *******************************************************************************************************************
|
|
|
|
" Typical Prompt
|
|
if g:ConqueTerm_PromptRegex != ''
|
|
silent execute "syn match ConquePromptLine '" . g:ConqueTerm_PromptRegex . ".*$' contains=ConquePrompt,ConqueString oneline"
|
|
silent execute "syn match ConquePrompt '" . g:ConqueTerm_PromptRegex . "' contained oneline"
|
|
hi def link ConquePrompt Identifier
|
|
endif
|
|
|
|
" Strings
|
|
syn region ConqueString start=+'+ end=+'+ skip=+\\'+ contained oneline
|
|
syn region ConqueString start=+"+ end=+"+ skip=+\\"+ contained oneline
|
|
syn region ConqueString start=+`+ end=+`+ skip=+\\`+ contained oneline
|
|
hi def link ConqueString String
|
|
|
|
" vim: foldmethod=marker
|