summaryrefslogtreecommitdiffstats
path: root/tests/test_vim/tests/plugin_file.vim
blob: 18489332cfb78284d3ba8f50feb972d56c66dd93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/vim -S
set encoding=utf-8
let g:powerline_config_paths = [expand('<sfile>:p:h:h:h:h') . '/powerline/config_files']
tabedit abc
tabedit def
try
	source <sfile>:p:h:h:h:h/powerline/bindings/vim/plugin/powerline.vim
catch
	call writefile([v:exception], 'message.fail')
	cquit
endtry
set ls=2
redrawstatus!
redir =>mes
	messages
redir END
let mess=split(mes, "\n")
if len(mess)>1
	call writefile(mess, 'message.fail')
	cquit
endif
qall!