summaryrefslogtreecommitdiff
path: root/extras/syntax/earlpy.vim
blob: 429db40f38d63b8e265284be27d09ddeed95db2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
" https://vim.fandom.com/wiki/Creating_your_own_syntax_files
" Vim syntax file
" Language: Celestia Star Catalogs
" Maintainer: Kevin Lauder
" Latest Revision: 26 April 2008

if exists("b:current_syntax")
  finish
endif

let b:current_syntax = "earlpy"

" Matches
syn match basicKeywords "\zs.*\ze$"
syn match literalTag "\zs .*\ze$"
syn match comment "\zs#.*\ze$"

hi def link literalTag    Type
hi def link basicKeywords Keyword
hi def link comment Comment
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback