Skip to content

Instantly share code, notes, and snippets.

@rummelonp
Created January 10, 2014 11:43
Show Gist options
  • Save rummelonp/8350576 to your computer and use it in GitHub Desktop.
Save rummelonp/8350576 to your computer and use it in GitHub Desktop.
git リポジトリ内ならリポジトリ内のファイル一覧開いてそうじゃないなら最近開いたファイル一覧開くやつ
(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