소스 검색

Update default command

master
10sr 5 년 전
부모
커밋
34eea3f66f
로그인 계정: 10sr GPG 키 ID: C384BB17CBB19347
1개의 변경된 파일7개의 추가작업 그리고 3개의 파일을 삭제
  1. +7
    -3
      emacs.el

+ 7
- 3
emacs.el 파일 보기

@@ -743,12 +743,16 @@ found, otherwise returns nil."
;; Breadth-first find https://github.com/tavianator/bfs
"bfs"
"find"))
(defcmd (concat "set -o pipefail; "
(defcmd (concat "set -eu; set -o pipefail; "
"echo .; "
"echo ..; "
"command " find " -L . "
"-mindepth 1 "
"\\( -fstype 'sysfs' -o -fstype 'devfs' -o -fstype 'devtmpfs' -o -fstype 'proc' \\) -prune "
"-o -print 2> /dev/null "
"-o -print "
"2> /dev/null "
"| "
"sed -e 's|^\\./||'")))
"cut -b3-")))
(setenv "FZF_DEFAULT_COMMAND" defcmd))
(define-key ctl-x-map (kbd "C-f") 'fzf)
)


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