이맥스 초보자로서, IDO를 발견하고 파일 검색이 훨씬 빨라 졌기 때문에 IDO를 좋아했습니다. 이 사이트에서 약간의 시간을 보낸 후 Helm에 대해 더 많이 읽었으며 전환을 계획하고 있습니다. 내 질문 중 일부는 다음과 같습니다.
- 가장 큰 차이점은 무엇입니까?
- 특히 파일을 찾거나 버퍼를 전환하거나 새 명령을 호출 할 때 워크 플로를 어떻게 변경해야합니까?
내가 사용 이 게시물을 투구를 설정,하지만 내 파일 검색 ( C-x C-f
) 및 버퍼 스위치 ( C-x b
전과 같이) 거의 같은 모양.
내 구성은 다음과 같습니다.
(require 'helm)
(require 'helm-config)
;; The default "C-x c" is quite close to "C-x C-c", which quits Emacs.
;; Changed to "C-c h". Note: We must set "C-c h" globally, because we
;; cannot change `helm-command-prefix-key' once `helm-config' is loaded.
(global-set-key (kbd "C-c h") 'helm-command-prefix)
(global-unset-key (kbd "C-x c"))
(define-key helm-map (kbd "<tab>") 'helm-execute-persistent-action) ; rebihnd tab to do persistent action
(define-key helm-map (kbd "C-i") 'helm-execute-persistent-action) ; make TAB works in terminal
(define-key helm-map (kbd "C-z") 'helm-select-action) ; list actions using C-z
(when (executable-find "curl")
(setq helm-google-suggest-use-curl-p t))
(setq helm-quick-update t ; do not display invisible candidates
helm-split-window-in-side-p t ; open helm buffer inside current window, not occupy whole other window
helm-buffers-fuzzy-matching t ; fuzzy matching buffer names when non--nil
helm-move-to-line-cycle-in-source t ; move to end or beginning of source when reaching top or bottom of source.
helm-ff-search-library-in-sexp t ; search for library in `require' and `declare-function' sexp.
helm-scroll-amount 8 ; scroll 8 lines other window using M-<next>/M-<prior>
helm-ff-file-name-history-use-recentf t)
(helm-mode 1)
1
이미 알고 있듯이 재고 Emacs 명령을 대체하기 위해 Helm 특정 명령을 바인딩하는 것을 잊었습니다. 각 특정 Helm 명령에 대한 안내서를 계속 읽으면 가능한 경우 키 바인딩을 설정하고 각 섹션에 설정 한 것을 볼 수 있습니다. 그럼에도 불구하고 Helm :)
—
Tu Do