add syntax test cases
This commit is contained in:
parent
3ad4b0334c
commit
3bf598d169
20
test/files/test.erl
Normal file
20
test/files/test.erl
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
-module(mmc_logmon_sup).
|
||||||
|
-behaviour(supervisor).
|
||||||
|
-export([init/1]).
|
||||||
|
|
||||||
|
init(_) ->
|
||||||
|
{ok, {
|
||||||
|
{one_for_one, 5, 1},
|
||||||
|
[
|
||||||
|
{listener,
|
||||||
|
{aaa, start_link, []},
|
||||||
|
permanent, 100, worker,
|
||||||
|
[aaa]
|
||||||
|
},
|
||||||
|
{server,
|
||||||
|
{bbb, start_link, []},
|
||||||
|
permanent, 100, worker,
|
||||||
|
[bbb]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}}.
|
@ -58,6 +58,9 @@ Bundle 'rstacruz/sparkup.git', {'rtp': 'vim/'}
|
|||||||
" Camel case
|
" Camel case
|
||||||
Bundle 'vim-scripts/RubySinatra'
|
Bundle 'vim-scripts/RubySinatra'
|
||||||
|
|
||||||
|
" syntax issue #203
|
||||||
|
Bundle 'jimenezrick/vimerl'
|
||||||
|
|
||||||
filetype plugin indent on " Automatically detect file types.
|
filetype plugin indent on " Automatically detect file types.
|
||||||
|
|
||||||
set wildignore+=doc " should not break helptags
|
set wildignore+=doc " should not break helptags
|
||||||
@ -69,3 +72,5 @@ set wildignore+=*/.git/*
|
|||||||
" set wildignore+=*/doc/*
|
" set wildignore+=*/doc/*
|
||||||
|
|
||||||
au VimEnter * BundleInstall
|
au VimEnter * BundleInstall
|
||||||
|
|
||||||
|
" e test/files/erlang.erl
|
||||||
|
Loading…
Reference in New Issue
Block a user