LoginSignup
27
27

More than 5 years have passed since last update.

helm-mode 有効時でも helm-find-files は無効にする

Posted at

既存のコマンドを Helm インターフェイスに置き換える方法として (helm-mode 1) とする方法があります. execute-extended-command (M-x) などを置き換えると非常に便利なのですが, find-file (C-x C-f) や write-file (C-x C-w) は Helm が便利だと感じたことがありません.

helm-mode を有効にしているときでも find-file はデフォルトのものを使いたい場合は .emacs に以下を記述します.

(require 'helm-mode)
(helm-mode 1)
;;; 処理を変更したいコマンドをリストに登録していく
(add-to-list 'helm-completing-read-handlers-alist '(find-file . nil))
27
27
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
27
27