Slight clean up of the syntax files

This commit is contained in:
Alex Vear
2019-09-28 17:15:13 +01:00
parent f7e1410f09
commit 71b097df62
2 changed files with 10 additions and 14 deletions

View File

@@ -4,13 +4,13 @@
" License: Vim (see `:help license`) " License: Vim (see `:help license`)
" Location: syntax/org.vim " Location: syntax/org.vim
" Website: https://github.com/axvr/org.vim " Website: https://github.com/axvr/org.vim
" Last Change: 2019-09-22 " Last Change: 2019-09-28
" "
" Reference Specification: Org mode manual " Reference Specification: Org mode manual
" GNU Info: `$ info Org` " GNU Info: `$ info Org`
" Web: <https://orgmode.org/manual/index.html> " Web: <https://orgmode.org/manual/index.html>
if exists("b:current_syntax") if exists('b:current_syntax') && b:current_syntax !=# 'outline'
finish finish
endif endif
@@ -76,12 +76,12 @@ syntax match orgHeading6 /^\s*\*\{6,}\s\+.*$/ keepend contains=@Spell,orgTag,org
syntax match orgTag /:\w\{-}:/ contained contains=orgTag syntax match orgTag /:\w\{-}:/ contained contains=orgTag
exec 'syntax keyword orgTodo contained ' . join(org#option('org_state_keywords', ['TODO', 'NEXT', 'DONE']), ' ') exec 'syntax keyword orgTodo contained ' . join(org#option('org_state_keywords', ['TODO', 'NEXT', 'DONE']), ' ')
hi def link orgHeading1 Title highlight def link orgHeading1 Title
hi def link orgHeading2 orgHeading1 highlight def link orgHeading2 orgHeading1
hi def link orgHeading3 orgHeading2 highlight def link orgHeading3 orgHeading2
hi def link orgHeading4 orgHeading3 highlight def link orgHeading4 orgHeading3
hi def link orgHeading5 orgHeading4 highlight def link orgHeading5 orgHeading4
hi def link orgHeading6 orgHeading5 highlight def link orgHeading6 orgHeading5
highlight def link orgTodo Todo highlight def link orgTodo Todo
highlight def link orgTag Type highlight def link orgTag Type
@@ -101,8 +101,4 @@ syntax match orgHyperURL /[^][]\{-1,}\]\[/ contained conceal
highlight def link orgHyperlink Underlined highlight def link orgHyperlink Underlined
" Tables
syntax match orgTable /^|.*$/ contains=@Spell,orgBold,orgItalic,orgUnderline,orgVerbatim,orgCode
let b:current_syntax = 'org' let b:current_syntax = 'org'

View File

@@ -4,13 +4,13 @@
" License: Vim (see `:help license`) " License: Vim (see `:help license`)
" Location: syntax/outline.vim " Location: syntax/outline.vim
" Website: https://github.com/axvr/org.vim " Website: https://github.com/axvr/org.vim
" Last Change: 2019-09-22 " Last Change: 2019-09-28
" "
" Reference Specification: GNU Emacs Manual, section 'Outline Mode' " Reference Specification: GNU Emacs Manual, section 'Outline Mode'
" GNU Info: `$ info Emacs Outline Mode` " GNU Info: `$ info Emacs Outline Mode`
" Web: <https://www.gnu.org/software/emacs/manual/html_node/emacs/Outline-Mode.html> " Web: <https://www.gnu.org/software/emacs/manual/html_node/emacs/Outline-Mode.html>
if exists("b:current_syntax") if exists('b:current_syntax')
finish finish
endif endif