2014-08-03 07:16:30 +02:00
|
|
|
|
#!/usr/bin/vim -S
|
|
|
|
|
source powerline/bindings/vim/plugin/powerline.vim
|
|
|
|
|
edit abc
|
|
|
|
|
tabedit def
|
|
|
|
|
tabedit ghi
|
2014-08-03 10:49:18 +02:00
|
|
|
|
|
2014-08-03 07:16:30 +02:00
|
|
|
|
try
|
|
|
|
|
let &columns = 80
|
|
|
|
|
let result = eval(&tabline[2:])
|
|
|
|
|
catch
|
|
|
|
|
call writefile(['Exception while evaluating &tabline', v:exception], 'message.fail')
|
|
|
|
|
cquit
|
|
|
|
|
endtry
|
|
|
|
|
|
2014-08-03 10:05:03 +02:00
|
|
|
|
if result isnot# '%#Pl_240_5789784_235_2500134_NONE# 1 %#Pl_240_5789784_235_2500134_NONE#./%#Pl_244_8421504_235_2500134_bold#abc %#Pl_244_8421504_235_2500134_NONE# %#Pl_240_5789784_235_2500134_NONE#2 %#Pl_240_5789784_235_2500134_NONE#./%#Pl_244_8421504_235_2500134_bold#def %#Pl_235_2500134_240_5789784_NONE# %#Pl_250_12369084_240_5789784_NONE#./%#Pl_231_16777215_240_5789784_bold#ghi %#Pl_240_5789784_236_3158064_NONE# %#Pl_231_16777215_236_3158064_NONE# %#Pl_252_13684944_236_3158064_NONE# %#Pl_235_2500134_252_13684944_bold# Tabs '
|
2014-08-05 23:33:37 +02:00
|
|
|
|
call writefile(['Unexpected tabline', result], 'message.fail')
|
2014-08-03 07:16:30 +02:00
|
|
|
|
cquit
|
|
|
|
|
endif
|
2014-08-03 10:49:18 +02:00
|
|
|
|
|
|
|
|
|
tabonly!
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
let result = eval(&tabline[2:])
|
|
|
|
|
catch
|
|
|
|
|
call writefile(['Exception while evaluating &tabline', v:exception], 'message.fail')
|
|
|
|
|
cquit
|
|
|
|
|
endtry
|
|
|
|
|
|
|
|
|
|
if result isnot# '%#Pl_240_5789784_235_2500134_NONE# ./%#Pl_244_8421504_235_2500134_bold#abc %#Pl_244_8421504_235_2500134_NONE# %#Pl_240_5789784_235_2500134_NONE#./%#Pl_244_8421504_235_2500134_bold#def %#Pl_235_2500134_240_5789784_NONE# %#Pl_250_12369084_240_5789784_NONE#./%#Pl_231_16777215_240_5789784_bold#ghi %#Pl_240_5789784_236_3158064_NONE# %#Pl_231_16777215_236_3158064_NONE# %#Pl_252_13684944_236_3158064_NONE# %#Pl_235_2500134_252_13684944_bold# Bufs '
|
2014-08-05 23:33:37 +02:00
|
|
|
|
call writefile(['Unexpected tabline (2)', result], 'message.fail')
|
2014-08-03 10:49:18 +02:00
|
|
|
|
cquit
|
|
|
|
|
endif
|
|
|
|
|
|
2014-08-03 07:16:30 +02:00
|
|
|
|
qall!
|