Disabling statusline for specific windows (i.e. taglist window)

2006-04-19 Thread Yi Qiang
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Is it possible to disable the statusline for a specific window? For plugins like taglist it's really not neccessary to have a status. If it can not be disabled, can you assign custom statuslines to different windows? That way you could at least disp

Re: Disabling statusline for specific windows (i.e. taglist window)

2006-04-19 Thread Eric Arnold
With Vim7, each window can have its own statusline settings: setlocal statusline=. On 4/19/06, Yi Qiang <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Is it possible to disable the statusline for a specific window? For > plugins like taglist it's really no

Re: Disabling statusline for specific windows (i.e. taglist window)

2006-04-19 Thread Yi Qiang
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Eric Arnold wrote: > With Vim7, each window can have its own statusline settings: > > setlocal statusline=. > Hurmm, if I change the taglist window to be the active one, and for example do ":setlocal statusline="TEST"", nothing happens. Yi ---

Re: Disabling statusline for specific windows (i.e. taglist window)

2006-04-19 Thread Eric Arnold
I dunno. This works for me: exe bufwinnr('__TAG') . 'wincmd w' | setlocal statusline=3D'testing' | winc= md p as does clicking in the :Tlist window and typing :setlocal statusline ... Which Vim version are you using? On 4/19/06, Yi Qiang <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIG

Re: Disabling statusline for specific windows (i.e. taglist window)

2006-04-19 Thread Eric Arnold
Blah, I wish I could turn off "Rich formatting" in gmail for good. exe bufwinnr('__TAG') . 'wincmd w' | setlocal statusline='testing' | wincmd p On 4/20/06, Eric Arnold <[EMAIL PROTECTED]> wrote: > I dunno. This works for me: > > exe bufwinnr('__TAG') . 'wincmd w' | setlocal statusline=3D't