emacsでスクロールで上下移動できるようにする
目標
上下スクロールでページアップ、ダウンを行う!
.emacs
以下を追加でオッケー
.emacs
(unless window-system
(require 'mouse)
(xterm-mouse-mode t)
(global-set-key [mouse-4] (lambda ()
(interactive)
(scroll-down 1)))
(global-set-key [mouse-5] (lambda ()
(interactive)
(scroll-up 1)))
(defun track-mouse (e))
(setq mouse-sel-mode t)
)
Author And Source
この問題について(emacsでスクロールで上下移動できるようにする), 我々は、より多くの情報をここで見つけました https://qiita.com/nakamasato/items/13be3c8de84453743def著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .