Sublime と Intellij のクイック オープンを模倣する、ディレクトリ構造 (プロジェクト ディレクトリ) 内であいまいなファイル名の一致を行う emacs に組み込まれたパッケージまたは何かがありますか。
アプリケーションの途中でテキスト入力 UI をポップアップし、入力時に更新される可能性のある一致をドロップダウン形式で以下にリストする必要はありません。その機能の意図と一致するというだけです。
Sublime と Intellij のクイック オープンを模倣する、ディレクトリ構造 (プロジェクト ディレクトリ) 内であいまいなファイル名の一致を行う emacs に組み込まれたパッケージまたは何かがありますか。
アプリケーションの途中でテキスト入力 UI をポップアップし、入力時に更新される可能性のある一致をドロップダウン形式で以下にリストする必要はありません。その機能の意図と一致するというだけです。
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.
ファイル名と( )のあいまい一致を取得するには、 init ファイル(例:~/.emacs
または) に次の行を追加します。~/.emacs.d/init.el
find-file
C-x C-f
(ido-mode t)
(setq ido-enable-flex-matching t)