W
Size: a a a
G
G
:mess
G
VL
G
G
G
G
cc
m
autocmd BufWinEnter * highlight ExtraWhitespace ctermbg=88 guibg=88 | match ExtraWhitespace /\s\+$/
function! HandleBufferAppearance()
if &previewwindow == 0
wincmd T
endif
if tabpagenr() == 2
set noshowmode
set noruler
set laststatus=0
set noshowcmd
endif
endfunction
autocmd BufWinEnter * call HandleBufferAppearance()
A