1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Emacs smooth-scroll.el スクロール速度を変える。

Last updated at Posted at 2016-02-27

smooth-scroll.elを入れるとスクロールがスムーズになる。
しかし、スクロールが1行ずつ行われるため遅いためスクロールスピードを変える。
smooth-scroll

環境

OS: Mac OS X 10.9.5
Emacsのバージョン Emacs 24.4.1
smooth-scrollのバージョン 1.1

変更内容

設定ファイルにsmooth-scrollの設定を追加する。

init.el
;; 縦方向のスクロール行数を変更する。
(setq smooth-scroll/vscroll-step-size 4)
;; 横方向のスクロール行数を変更する。
(setq smooth-scroll/hscroll-step-size 4)

上記の設定をすると、4行単位でスクロールが行われるため、早くなる。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?