平衡点


2022/01/17

_ FirefoxのVim的操作拡張をvimium-ffからVim Vixenに変えた[Computer

vimplerator → vimFx → vimium-ff と流れてきて, 今回 Firefox を 96 に更新したら, バックグラウンドでタブを開くと二つ開かれる様になってしまった.

というわけで, 乗り換え候補として, これまで何度か試した Vim Vixen に移行.

とりあえず, 見た目の設定: フォントがHiDPI環境だと辛いので, ~/.mozilla/firefox/<profile>/chrome/userContent.css

.vimvixen-hint {
	font-size: 18px !important;
}
#vimvixen-console * :not(input){
	font-size: 18px !important;
}
.vimvixen-console input {
	font-size: 18px !important;
}

なんて書いておくことに.

これ, カスタマイズしたいって要望は上がってるけど, どうなるのかな…🤔

(2022/01/31追記)

左下に出る URL, status の表示が Vim Vixen のコンソールと被るので ~/.mozilla/firefox/<profile>/chrome/userChrome.css

/* only needed once */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");

/* hide 'overlink' messages */
#statuspanel[type="overLink"] {
    opacity: 0 !important;
}
/* hide all status messages */
#statuspanel {
    opacity: 0 !important;
}

として非表示にしておく.


連絡先など

portrait

最近の日記

一覧

Back to Top ▲