我慢してはいけない

ubuntufirefoxthinkpadのスクロール機能を使うと勝手に次のページにいったり前のページにいったりしてしまい、最低の使い勝手。

我慢して使っていたが我慢ならないので調べてみたら簡単に解決できた。
FireFoxのabout:config で下記指定。

mousewheel.horizscroll.withcontrolkey.action = 3;
mousewheel.horizscroll.withcontrolkey.numlines = 1; 
mousewheel.horizscroll.withcontrolkey.sysnumlines = true;

mousewheel.horizscroll.withnokey.action = 0;
mousewheel.horizscroll.withnokey.numlines = 1;
mousewheel.horizscroll.withnokey.sysnumlines = true;

mousewheel.horizscroll.withshiftkey.action = 1;
mousewheel.horizscroll.withshiftkey.numlines = 1;
mousewheel.horizscroll.withshiftkey.sysnumlines = true;