Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
箱から:ls出して、悪モードで呼び出しますM-x list-buffers。M-x ibufferこれを再バインドして代わりに実行するには、.emacs に何を入れる必要がありますか?
:ls
M-x list-buffers
M-x ibuffer
指定(defalias 'list-buffers 'ibuffer)してもうまくいきませんでした。
(defalias 'list-buffers 'ibuffer)
ソースファイル「evil-maps.el」を見ると、別の方法が見つかりました。
.emacs ファイルに追加します。
;; bind ':ls' command to 'ibuffer instead of 'list-buffers (evil-ex-define-cmd "ls" 'ibuffer)
このメソッドは、悪意のある ex コマンドをマップできる必要があります。