diff options
| author | Adam Stankiewicz <sheerun@sher.pl> | 2020-03-02 01:03:15 +0100 | 
|---|---|---|
| committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-03-02 01:03:15 +0100 | 
| commit | e558a218c6469c37cb17e17fd6789787090e6933 (patch) | |
| tree | 6d9f9e90e624a67335418e1bbdec0c62e02db65f /indent | |
| parent | 16774887a3fe26a09326585f871748ddf158905e (diff) | |
| download | vim-polyglot-e558a218c6469c37cb17e17fd6789787090e6933.tar.gz vim-polyglot-e558a218c6469c37cb17e17fd6789787090e6933.zip | |
Add razor syntax, fixes #450
Diffstat (limited to '')
| -rw-r--r-- | indent/razor.vim | 14 | 
1 files changed, 14 insertions, 0 deletions
| diff --git a/indent/razor.vim b/indent/razor.vim new file mode 100644 index 00000000..d3990890 --- /dev/null +++ b/indent/razor.vim @@ -0,0 +1,14 @@ +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'razor') == -1 + +" Vim indent file +" Language:	    Razor +" Maintainer:	Adam Clark <adamclerk@gmail.com> +" Last Change:	2013 Jan 24 + +if exists("b:did_indent") +  finish +endif +runtime! indent/html.vim +runtime! indent/javscript.vim + +endif | 
