LoginSignup
3
1

More than 5 years have passed since last update.

EmacsのDiredバッファで 'other-windowのキーバインド設定が有効にならない時

Last updated at Posted at 2013-09-25

上書いて同じ動作になるようにする。


; <C-t>でウィンドウ切り替え
(global-set-key (kbd "C-t") 'other-window)

; Dired用にウィンドウ切り替え設定
(add-hook 'dired-mode-hook
      (lambda ()
        (define-key dired-mode-map (kbd "C-t") 'other-window)))


3
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
3
1