From: "Stephen J. Turnbull" <turnbull(a)sk.tsukuba.ac.jp>
Date: Mon, 20 Aug 2001 17:37:56 +0900
>>>> "Ilpo" == Ilpo Nyyssonen <iny(a)iki.fi>
writes:
Ilpo> 1) Is there any workaround?
Not that I know of. It should be relatively straightforward to go
into lisp/gutter-items.el and make a function to shorten the names
uniquely (instead of just truncating them), but ...
You can also change the number of characters to use for the gutter tabs
(set-specifier buffers-tab-default-buffer-line-length 30)
The other thing that you can do is change the default font for the
gutter tab so that it takes less room by using a smaller sized condensed font:
(when (find-face 'buffers-tab)
(when (eq system-type 'windows-nt)
(custom-set-face-font-family 'buffers-tab "Clarendon Condensed")
(custom-set-face-font-size 'buffers-tab "9pt")))
-jeff