Como novato no Emacs, encontrei o IDO e adorei, pois tornava a pesquisa de arquivos muito mais rápida. Depois de passar algum tempo neste site, li mais e mais sobre Helm e estou planejando fazer a troca. Algumas das minhas perguntas são:
- Quais são as maiores diferenças?
- Especificamente, como meu fluxo de trabalho deve mudar ao localizar arquivos, alternar buffers ou chamar novos comandos?
Eu usei este post para configurar o Helm, mas minhas pesquisas de arquivo ( C-x C-f
) e opções de buffer ( C-x b
) têm a mesma aparência de antes.
Aqui está a minha configuração:
(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)
Respostas:
ATUALIZADO (alterações de leme, alterações de configuração pessoal e comentários de Tu Do).
Mudei de IDO para Helm há alguns anos e nunca olhei para trás.
Eu uso o projétil Helm, Helm swoop, Helm semântico, Helm ag e alguns dos comandos interativos do Helm. Caixa da página Melpa pacotes relacionados Helm interessantes.
Aqui estão algumas das minhas configurações relacionadas ao Helm:
fonte
helm-boring-file-regexp-list
contém muito mais do que o apresentado aqui. Se você usar a configuração do remiro, observe este ponto. Provavelmente esta é a sua preferência.helm-input-idle-delay
ehelm-idle-delay default
foram 0,01 meses atrás, para obter a resposta mais rápida possível. No geral, a configuração está boa.multiple-cursors
.projectile-find-file
pop apenas uma única linha na parte inferior da tela, Helm + Projectile exibirá uma janela pop-up. Existe uma opção para alterar esse comportamento?