소스 검색

emacs.el: do not add files under user-emacs-directory to recentf lsit

pull/1/head
10sr 10 년 전
부모
커밋
15747d07e8
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      emacs.el

+ 4
- 1
emacs.el 파일 보기

@@ -1500,7 +1500,10 @@ found, otherwise returns nil."
recentf-show-file-shortcuts-flag nil)

(when (require 'recentf nil t)
(add-to-list 'recentf-exclude (regexp-quote recentf-save-file))
(add-to-list 'recentf-exclude
(regexp-quote recentf-save-file))
(add-to-list 'recentf-exclude
(regexp-quote (expand-file-name user-emacs-directory)))
(define-key ctl-x-map (kbd "C-r") 'recentf-open-files)
(add-hook 'find-file-hook
'recentf-save-list


불러오는 중...
취소
저장