diff options
Diffstat (limited to 'vim/.vim/bundle/Vundle.vim/test/files')
| m--------- | vim/.vim/bundle/Vundle.vim | 0 | ||||
| -rw-r--r-- | vim/.vim/bundle/Vundle.vim/test/files/test.erl | 20 |
2 files changed, 20 insertions, 0 deletions
diff --git a/vim/.vim/bundle/Vundle.vim b/vim/.vim/bundle/Vundle.vim deleted file mode 160000 -Subproject 0b28e334e65b6628b0a61c412fcb45204a2f2ba diff --git a/vim/.vim/bundle/Vundle.vim/test/files/test.erl b/vim/.vim/bundle/Vundle.vim/test/files/test.erl new file mode 100644 index 0000000..1672953 --- /dev/null +++ b/vim/.vim/bundle/Vundle.vim/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] + } + ] + }}. |
