GitXplorerGitXplorer
S

helm-recentd

public
0 stars
1 forks
1 issues

Commits

List of commits on branch master.
Unverified
433bce02976e6a3479e04cbfa7240c26345b58f6

Fix path copy bug.

committed 11 years ago
Unverified
8356a1e2b279da2715217f43e8bd99593abfcbaa

Bug fix for 32bit OS

committed 11 years ago
Unverified
a55e315acf4d09d5a25a7527bd1c188d112e21bc

Remove cl function

committed 11 years ago
Unverified
6cc9159aadf0a1352159d3316e1288f65334c87a

Add copy path option

SShingoFukuyama committed 11 years ago
Unverified
d2082467d816734a714c610c46d3285b76c30c73

Add options for linux and windows

SShingoFukuyama committed 11 years ago
Unverified
07b15773ea9baed6cf16ed7413c7b68456f9c1db

Fix file path name for various OSs

SShingoFukuyama committed 11 years ago

README

The README file for this repository.

helm-recentd.el

Keep directories history you've opened in dired, even if you stop running Emacs!

;; Example
(add-to-list 'load-path "~/.emacs.d/elisp/helm")
(add-to-list 'load-path "~/.emacs.d/elisp/helm-recentd")
(require 'helm)
(require 'helm-recentd)

;; You can change the default file name and location. I recommend to attach
;; `user-full-name' to distinguish multiple systems that you are using.
(setq helm-recentd-file
      (convert-standard-filename
       (concat "~/.emacs.d/.helm-recentd" "-" user-full-name)))

;; Sort directory list by 'date or 'frequency
(setq helm-recentd-sort 'date)

(global-set-key (kbd "C-x C-d") 'helm-recentd)

Option for Mac OSX, Linux, Windows

While selecting directory path in helm interface, you can also choose where to open the directory by pressing [TAB] key, the options are, such as Finder, Nautilus, Terminal, or iTerm2, Explorer, Command Prompt, instead of opening in Emacs dired-mode.