summaryrefslogtreecommitdiff
path: root/vim/.vim/bundle/Vundle.vim/test/files/test.erl
diff options
context:
space:
mode:
authorHorus32015-02-03 18:49:35 +0100
committerHorus32015-02-03 18:49:35 +0100
commit323716c9fdd59021c0c3a1fdf900108ace857e41 (patch)
tree2ac3a3c705ce08bba157954c377606585e32c734 /vim/.vim/bundle/Vundle.vim/test/files/test.erl
parentff775238f563bcd0f25985c029f98f90c5e4a70b (diff)
downloaddotfiles-323716c9fdd59021c0c3a1fdf900108ace857e41.tar.gz
Updated .vimrc
Diffstat (limited to 'vim/.vim/bundle/Vundle.vim/test/files/test.erl')
m---------vim/.vim/bundle/Vundle.vim0
-rw-r--r--vim/.vim/bundle/Vundle.vim/test/files/test.erl20
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]
+ }
+ ]
+ }}.