Alacrittyを0.3.0から0.4.0にアップデートしたきのWarn対応


前回

Alacrittyを0.3.0から0.3.3にアップデートしたきのWarn対応 - Qiita
こちらの続き。

今回

Alacrittyをアップデートしてみたところ以下の警告が出た。
$XDG_CONFIG_HOME/alacritty/alacritty.yml の変更が必要と判断。
修正箇所を記載する。

なお、環境はMacOSX。バージョンは0.3.3 -> 0.4.0とする。
Releases · jwilm/alacritty

brew cask upgrade alacritty の後に起動するとまず以下の警告

[WARN] Config scrolling.faux_multiplier is deprecated

[WARN] Config scrolling.faux_multiplier is deprecated; the alternate scroll escape can now be used to disable it and scrolling.multiplier controls the number of scrolled lines

Release情報よりRemoved

Deprecated scrolling.faux_multiplier, the alternate scroll escape can now be used to disable it
and scrolling.multiplier controls the number of scrolled lines

該当コミットも確認。
https://github.com/jwilm/alacritty/pull/2855
単純に他の機能導入により不要となったので削除でよいと判断。


scrolling:
-  faux_multiplier: 3

これで今回は修正OK。警告は消えた。
1.0になるまでは見守っていきたい。