Vim Part15
..
629:名無しさん@お腹いっぱい。
08/10/12 21:24:18
おれならこうかく
function! s:SynchronizeWindow()
let nCurWin = winnr()
let nCurBuf = bufnr("%")
let nCurTop = line("w0")
let nCurBot = line("w$")
wincmd w
if nCurWin != winnr() && nCurBuf == bufnr("%")
execute printf("normal! %dzt", nCurBot + 1)
endif
wincmd W
wincmd W
if nCurWin != winnr() && nCurBuf == bufnr("%")
execute printf("normal! %dzb", nCurTop - 1)
endif
wincmd w
endfunction
次ページ続きを表示1を表示最新レス表示スレッドの検索類似スレ一覧話題のニュースおまかせリスト▼オプションを表示暇つぶし2ch
5195日前に更新/188 KB
担当:undef