You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
475 B
VimL
21 lines
475 B
VimL
11 years ago
|
" Language: Literate CoffeeScript
|
||
|
" Maintainer: Michael Smith <michael@diglumi.com>
|
||
|
" URL: https://github.com/mintplant/vim-literate-coffeescript
|
||
|
" License: MIT
|
||
|
|
||
|
if exists('b:current_syntax') && b:current_syntax == 'litcoffee'
|
||
|
finish
|
||
|
endif
|
||
|
|
||
|
runtime! syntax/markdown.vim
|
||
|
unlet b:current_syntax
|
||
|
|
||
|
syn clear markdownCode
|
||
|
|
||
|
syn include @coffee syntax/coffee.vim
|
||
|
|
||
|
syn region inlineCoffee start='^ \|\t' end='$' contains=@coffee
|
||
|
|
||
|
let b:current_syntax = "litcoffee"
|
||
|
|