direx-project + popwinで快適なディレクトリツリー環境を構築する
Emacsでディレクトリツリーを使う意味
Vim使いのひとには、neotreeは親しみやすいと思うのですが、Emacsのdiredに慣れ親しんだ私には、次の作業のために不要になったtreeバファーをいちいち手動で閉じるというアクションは案外不便なのです。direxの場合は、diredのコンセプトを継承して作られているので、treeバファーから必要なファイルを選んで開くと自動的にtreeバッファーが隠れてくれてカレントバファーにファイルを展開してくれます。実際にEmacsで作業する手順を考えるとこの方が使いやすいと私は思うのです。
Direx-projectを使う
direxの作者は、popwinを開発された方でdirexは単独でも機能しますがpopwinと併用することでneotreeに勝るとも劣らない機能を提供してくれます。例によってパッチワークですが設定を公開します。特徴として以下の機能を持ちます。
- フォルダー表示はビジュアルにしたいのでunicodeの絵文字を使う。
- popwinを使うことで表示幅を自由に設定できる。
toggle機能はありませんが、q または C−g で隠れてくれるので使い勝手が良いです。 - project内にいるなら、direx-projectを起動し、そうでなければ普通にdirexを起動する。
以下のTipsのパクリですが、これが気に入っています。 - https://blog.shibayu36.org/entry/2013/02/12/191459
設定
;; direx
(use-package direx)
(setq direx:leaf-icon " " direx:open-icon "📂" direx:closed-icon "📁")
(push '(direx:direx-mode :position left :width 35 :dedicated t)
popwin:special-display-config)
;; use direx-project.el
;; https://blog.shibayu36.org/entry/2013/02/12/191459
(bind-key
[f11]
(defun direx:jump-to-project-directory ()
"If in project, launch direx-project otherwise start direx."
(interactive)
(let ((result (ignore-errors
(direx-project:jump-to-project-root-other-window)
t)))
(unless result
(direx:jump-to-directory-other-window)))))
Author And Source
この問題について(direx-project + popwinで快適なディレクトリツリー環境を構築する), 我々は、より多くの情報をここで見つけました https://qiita.com/minoruGH/items/99489554c2b8f4b139a3著者帰属:元の著者の情報は、元の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 .