如何使Vimperator的编号链接更大?(提示)


17

有什么方法可以使Vimperator的提示(按f/ F键后显示的链接号)稍大吗?

Answers:


17

我正在使用Pentadactyl,这是Vimperator的一个分支,但是我认为在这个特定问题上完全一样。

无论如何,您可以使用:highlight命令(请参阅参考资料:help highlight)将任何CSS添加到Hint组,如下所示:

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

(或在您的.vimperatorrc中放入相同的内容以使其永久保存。)

更改字体大小:200%;到您想要的任何内容,或添加您喜欢的任何其他CSS。(如果需要,这里是w3schools的CSS教程。)


4

此外:

  • 恢复为默认值: :highlight clear Hint
  • 只更改字体大小: :highlight Hint -append font-size:16px;
    • 注意;在最后
    • 注意 -append
    • 注意区分大小写
    • 请注意,与:相比font-size:200%,这将字体的大小设置为fixed,而不管要突出显示的文本的大小是多少
  • 验证是否进行了更改::highlight Hint,还可以选择使用Tab键选择适当的补全,在Vimperator的命令var,Ctrl + C上三次单击鼠标
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.