Skip to content

Latest commit

 

History

History
 
 

direx

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

direx.el -- General purpose directory/tree explore

Overview

direx.el is a simple directory explorer. It also works as a generic tree explore library.

Screenshots

Usage

Here is a minimal example usage:

(require 'direx)
(global-set-key (kbd "C-x C-j") 'direx:jump-to-directory)

If you are using popwin, you can use directory viewer as temporary "side-bar", like this:

(push '(direx:direx-mode :position left :width 25 :dedicated t)
      popwin:special-display-config)
(global-set-key (kbd "C-x C-j") 'direx:jump-to-directory-other-window)

Configuration

M-x customize-group RET direx RET.

Libraries using direx.el

  • direx-project.el (bundled with direx.el) -- project tree explorer
  • jedi-direx -- Python source code viewer

Author

Contributors


Copyright (C) 2011, 2012 Tomohiro Matsuyama <tomo@cx4a.org>