status bar 最適化計画そのに ( statusbar_organizer.vimp )

http://d.hatena.ne.jp/janus_wel/20081127/1227807826 で status bar のアイコンも増えてちょっと使い勝手がよくなったんだけどちょと見栄え悪い。ていうかなにこの空白。キモい。主に padding がキモい。 Greasemonkey のサルはイラッとくる顔してるし。

てなわけで :style でこの空白を殺すことに。以下を ~/vimperator/colors/ に statusbar_organizer.vimp とかって保存。2.0pre だと ~/vimperator/plugin 以下の js/ vimp ファイルが自動的に読み込まれるので、 ~/vimperator/plugin/style/ を作ってその下に放り込んどくと楽。ゴメン、 evening.vimp の設定 ( http://coderepos.org/share/browser/lang/javascript/vimperator-plugins/trunk/colors/evening.vimp ) パクった。

" organize icons of status bar
style -name statusbar chrome://* <<EOM
#status-bar statusbarpanel {
    padding: 1px !important;
}
statusbarpanel > * {
    margin: 0 !important;
    padding:0 !important;
}
EOM

" vim: sw=4 sts=4 ts=4 et

vimpratorrc like に double quotation がコメント。 here document で流し込むのは定型で覚えればいいと思う。あとこうやって目的ごとにファイル切り分けとくといい感じにアレコレできてよいかも。これでだいぶマシになった。

  • before
  • after

つづく。