diff --git a/test/files/test.erl b/test/files/test.erl new file mode 100644 index 0000000..1672953 --- /dev/null +++ b/test/files/test.erl @@ -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] + } + ] + }}. diff --git a/test/vimrc b/test/vimrc index c52a05b..662709f 100644 --- a/test/vimrc +++ b/test/vimrc @@ -58,6 +58,9 @@ Bundle 'rstacruz/sparkup.git', {'rtp': 'vim/'} " Camel case Bundle 'vim-scripts/RubySinatra' +" syntax issue #203 +Bundle 'jimenezrick/vimerl' + filetype plugin indent on " Automatically detect file types. set wildignore+=doc " should not break helptags @@ -69,3 +72,5 @@ set wildignore+=*/.git/* " set wildignore+=*/doc/* au VimEnter * BundleInstall + +" e test/files/erlang.erl