IDOからHelmに移行するときのワークフローの変更方法


44

Emacsの初心者として、私はIDOを見つけて、ファイルの検索がずっと速くなったので、それが大好きでした。このサイトでしばらく時間を過ごした後、私はHelmについてますます読んでおり、切り替えを計画しています。私の質問のいくつかは次のとおりです。

  1. 最大の違いは何ですか?
  2. 具体的には、ファイルの検索、バッファーの切り替え、または新しいコマンドの呼び出し時に、ワークフローをどのように変更する必要がありますか?

この投稿を使用して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コマンドのガイドを読み続けると、各セクションにキーバインディング(可能な場合)とセットアップが配置されていることがわかります。それにも関わらず、ヘルム:)楽しむ
火ドゥ

回答:


29

更新(Helmの変更、個人的な構成の変更、およびTu Doコメント)。

数年前にIDOからHelmに切り替えましたが、振り返ることはありませんでした。

  • たとえば、ido-vertical-modeよりも、プレゼンテーションの方がわかりやすいです。
  • Helmにはフレックスマッチングはありません。
  • smexなどは必要ありません。Helmがすべてを行います。
  • Tu doの記事は、Helmができることの素敵なアニメーションのスクリーンショットを提供するので良いです。

ヘルムの発射物、ヘルムの急降下、ヘルムのセマンティック、ヘルムのag、およびヘルムのインタラクティブなコマンドのいくつかを使用します。興味のあるHelm関連パッケージについては、Melpaページご覧ください

ヘルム関連のセットアップの一部を次に示します。

(setq helm-ff-transformer-show-only-basename nil
      helm-adaptive-history-file             "~/.emacs.d/data/helm-history"
      helm-yank-symbol-first                 t
      helm-move-to-line-cycle-in-source      t
      helm-buffers-fuzzy-matching            t
      helm-ff-auto-update-initial-value      t)

(autoload 'helm-descbinds      "helm-descbinds" t)
(autoload 'helm-eshell-history "helm-eshell"    t)
(autoload 'helm-esh-pcomplete  "helm-eshell"    t)

(global-set-key (kbd "C-h a")    #'helm-apropos)
(global-set-key (kbd "C-h i")    #'helm-info-emacs)
(global-set-key (kbd "C-h b")    #'helm-descbinds)

(add-hook 'eshell-mode-hook
          #'(lambda ()
              (define-key eshell-mode-map (kbd "TAB")     #'helm-esh-pcomplete)
              (define-key eshell-mode-map (kbd "C-c C-l") #'helm-eshell-history)))

(global-set-key (kbd "C-x b")   #'helm-mini)
(global-set-key (kbd "C-x C-b") #'helm-buffers-list)
(global-set-key (kbd "C-x C-m") #'helm-M-x)
(global-set-key (kbd "C-x C-f") #'helm-find-files)
(global-set-key (kbd "C-x C-r") #'helm-recentf)
(global-set-key (kbd "C-x r l") #'helm-filtered-bookmarks)
(global-set-key (kbd "M-y")     #'helm-show-kill-ring)
(global-set-key (kbd "M-s o")   #'helm-swoop)
(global-set-key (kbd "M-s /")   #'helm-multi-swoop)

(require 'helm-config)
(helm-mode t)
(helm-adaptative-mode t)

(global-set-key (kbd "C-x c!")   #'helm-calcul-expression)
(global-set-key (kbd "C-x c:")   #'helm-eval-expression-with-eldoc)
(define-key helm-map (kbd "M-o") #'helm-previous-source)

(global-set-key (kbd "M-s s")   #'helm-ag)

(require 'helm-projectile)
(setq helm-projectile-sources-list (cons 'helm-source-projectile-files-list
                                         (remove 'helm-source-projectile-files-list 
                                              helm-projectile-sources-list)))
(helm-projectile-on)

(define-key projectile-mode-map (kbd "C-c p /")
  #'(lambda ()
      (interactive)
      (helm-ag (projectile-project-root))))

(define-key org-mode-map (kbd "C-x c o h") #'helm-org-headlines)

@Ryanデフォルトにhelm-boring-file-regexp-listは、ここに示されている以外にも多くのものが含まれていることに注意してください。レミロのセットアップを使用する場合は、この点に注意してください。おそらくこれが彼の好みです。helm-input-idle-delayそしてhelm-idle-delay default最速の応答を作るために、0.01ヶ月前でした。全体的に、セットアップは問題ありません。
火ドゥ

あなたのアライメントは本当に素晴らしいです!どのように設定しますか?
fommil

@fommilのおかげで、パラメーターとして「#」を使用し、場合によっては「align-regexp」を使用していますmultiple-cursors
リメロ

あなたの答えはとてもいいです。しかし、質問があります。Projectile+ Idoを使用するprojectile-find-fileと、画面の下部に1行だけポップしますが、Helm + Projectileはポップアップ全体になります。この動作を変更するオプションはありますか?
ヴェン

@ Venemacswiki.org / emacs / InteractivelyDoThings#toc24github.com / creichert/ido-vertical- mode.elgithub.com / larkery/ido-grid- modeなど、IDO補完を垂直に表示するためのオプションがいくつかあります.el
リメロ
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.