On 8/6/06, A.J.Mechelynck <[EMAIL PROTECTED]> wrote:
Yakov Lerner wrote:
> % vim -u NONE -U NONE > ix<esc> " make 1st buffer modified > :tabnew<cr> " create 2nd tab > ix<esc> " make 2nd buffer modified > :tabclose! 1 "delete non-last tab > > " ^^^ watch the tabline after tabclose command. What do you see with -u NONE ?
This *is* with -u NONE, Antonie. This is console vim, In gvim, tabline is refreshed as expected. In console vim -u NONE, tabline is not refreshed. vim 7.0.42.
> " PROBLEM #1 here: tabline shows 2 tabs but this is > " wrong; only 1 tab exist at this point > :tabs " confirm that ony 1 tab exists > > :q! > E37: No write since last change (add ! to override) > E162: No write since last change for buffer "[No Name]" > "^^^^^ PROBLEM #2: can't quit vim here, must resort to kill
You're right, :qa! quits. Yakov