1

Sublime と Intellij のクイック オープンを模倣する、ディレクトリ構造 (プロジェクト ディレクトリ) 内であいまいなファイル名の一致を行う emacs に組み込まれたパッケージまたは何かがありますか。

アプリケーションの途中でテキスト入力 UI をポップアップし、入力時に更新される可能性のある一致をドロップダウン形式で以下にリストする必要はありません。その機能の意図と一致するというだけです。

4

2 に答える 2

1

I have only a vague idea of Sublime, but you might be looking for Projectile's find-file command. It also has the same to find inside a directory (not a project). It comes with various matching possibilities, with an helm interface with helm-projectile, which can be replaced by ido.

It is not buit-in though, you have to install it with the package manager, package.el: M-x package-install RET projectile RET, once it is configured.

于 2016-03-21T22:26:28.183 に答える
0

ファイル名と( )のあいまい一致を取得するには、 init ファイル(例:~/.emacsまたは) に次の行を追加します。~/.emacs.d/init.elfind-fileC-x C-f

(ido-mode t)
(setq ido-enable-flex-matching t)
于 2016-03-22T14:03:53.650 に答える