Is there any way to make Vimperator's link numbers (displayed after hitting the f/F key) slightly larger?

link|improve this question

feedback

1 Answer

I'm using Pentadactyl, which is a fork of Vimperator, but I think it's exactly the same on this particular issue.

Anyway, you can use the :highlight command (see :help highlight) to add any CSS to the Hint group, like this:

:highlight Hint font-size:200%;color:white;background-color:red;padding:2px;

(Or put the same in your .vimperatorrc to make it permanent.)

Change font-size:200%; to whatever you want, or add any other CSS you like. (Here's a CSS tutorial at w3schools if you want it.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.