You are not logged in.
Pages: 1
I'm using Vimperator and I'd find it very useful to have the tab's number displayed on every tab in my tab bar. tab tab. tab. I'm pretty sure there was an easy way to do this, but Google isn't friendly to me tonight. Do you know how to do this?
Offline
No idea, but with vimperator if you type :b followed by the <space> and then the <tab> key you get an enumeration at the bottom.
Offline
I've never used this before, so I can't give an opinion on it:
Offline
You should be able to to number your tabs by adding the following to your userChrome.css
/* Number tabs */
tab {
counter-increment: tab-number;
}
.tab-text:before {
content: counter(tab-number) ": ";
}
Unfortunately it doesn't work.
The next thing to try would be doing it via JavaScript in your .vimperatorrc.
Offline
I've never used this before, so I can't give an opinion on it:
Nice plugin! To bad it's not working properly with FF3.. Maybe it gets fixed in a while
Offline
skottish wrote:I've never used this before, so I can't give an opinion on it:
Nice plugin! To bad it's not working properly with FF3.. Maybe it gets fixed in a while
I see what you mean. It's functional, but clearly it's not quite right.
Offline
In addition to the :buffer command and alt-[1-9], with which I tend to be off by one when I have more than 6 tabs, I also use C-n C-p to switch between them, since 9 tabs is just too few .
Offline
ya I love the :buffer command! It tab-completes tab titles! Sometimes, though, when I have 50 tabs open, cycling through them is too long. If I see the tab on the tab bar, but it's pretty far from the current tab, it's too long to count to do a <count>gt, and I have to reach for the mouse. Now if my tabs were numbered, I could press b <number>.
Javascript in .vimperatorrc? I'll give a look. Why is Firefox so complicated!?
Offline
:help B ain't good enough for ya?
Offline
:help B ain't good enough for ya?
nope!
I asked in the mozillazine forums: http://forums.mozillazine.org/viewtopic … 8&t=798745.
P.S. Today I saw someone using a Mac. Some people in the room were like "whoah, look at his kewl interface!" and I wondered "how can he waste so much time doing such simple window navigation and placement tasks?" Maybe this is going overboard with optimizing the interface, but why not do it? hehehe
Offline
Bringing this thread up again, I too have been looking for this kind of solution, and finally asked a good friend of mine to help me with this, so he created a very nifty extension to display (text-only) numbers on all the tabs: http://alouche.net/2008/11/09/firefox-addon-numext/
Hope you find it useful!
Have you Syued today?
Free music for free people! | Earthlings
"Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take away." -- A. de Saint-Exupery
Offline
Numbered tabs is currently being implemented natively in Vimperator. It's buggy at the moment, but it's on it's way.
Offline
Pages: 1