XeFM’s text prompts complete file and directory paths as you type. Press TAB in any path or name prompt to fill in the rest of a name, or to pop up a list of the matching entries when several are possible. It works like shell path completion: the first TAB fills in as much as is unambiguous, and a second TAB (or continued typing) shows and narrows the choices.
| Prompt | Opened by | Completes |
|---|---|---|
| Jump to Path | Shift-J |
directories only |
| New Directory | create-directory | files + directories |
| New File | create-file | files + directories |
| Rename | R (single item) |
files + directories |
| Create Archive | create-archive | files + directories |
“Jump to Path” completes directories only, because you can only navigate into a
directory. The naming prompts complete both files and directories, which helps
when typing a nested name such as sub/dir/name.
/, so
another TAB descends into it.Paths beginning with ~ (your home directory), relative paths, and absolute
paths all complete. Matching is case-sensitive, matching how the filesystem
names things.
Completion follows the panes’ hidden-files toggle: while hidden files are
off, dot-entries (.config, .gitignore, …) do not appear among the
candidates — the same rule the file lists use.
Typing the leading dot yourself overrides this for that one token, the way
shells do: .c + TAB still completes .config/ even with hidden files off, so
a hidden directory stays reachable without flipping the toggle.
See also: developer notes.