Macvim - how to shorten table names?

In macvim, is it possible to make tab names full (i.e. not shortened?)

For example, if I open a-very-really-quite-long-file-name.txt, its name in the tab is shortened to a-very-really-q.... This is disappointing if you open several files open with long names that are similar in the beginning. (This reduction does not occur in the vim console).

Is there an option or setting that prevents this reduction?

(My option guitablabel=%M%twhere %tis the file name (the docs don't seem to mention the abbreviation), and I'm using macvim 7.3.)

+3
source share
1 answer

ok http://code.google.com/p/macvim/wiki/UserDefaults
, ($ - , ):

$ defaults write org.vim.MacVim MMTabMinWidth 200
$ defaults write org.vim.MacVim MMTabOptimumWidth 300
$ defaults write org.vim.MacVim MMTabMaxWidth 400

( ) . . . , , , , .

- , ...

+3

All Articles