Created
January 10, 2014 11:43
-
-
Save rummelonp/8350576 to your computer and use it in GitHub Desktop.
git リポジトリ内ならリポジトリ内のファイル一覧開いてそうじゃないなら最近開いたファイル一覧開くやつ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun anything-git-files-or-recentf () | |
(interactive) | |
(if (anything-git-files:git-p) | |
(anything-git-files) | |
(anything-recentf))) | |
(define-key global-map (kbd "C-x C-f") 'anything-git-files-or-recentf) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment