fzf-make is a command line tool that executes make target using fuzzy finder with preview window.
[English] [Deutsch] [Français]
- Select and execute a make target using fuzzy-finder
- Execute last executed target(By running
fzf-make --repeat.) - Command history
- Support
includedirective - (Scheduled to be developed) Support config file
- bat (In the future, we intend to make it work with
catas well, but currently it only works withbat.)
You don't need to install bat because fzf-make will install it automatically via Homebrew.
# install
brew tap kyu08/tap
brew install kyu08/tap/fzf-make# update
brew update
brew upgrade fzf-makefzf-make can be installed from the AUR using an AUR helper. For example:
paru -S fzf-makefzf-make can be run from the repository (latest version)
nix run github:kyu08/fzf-makeOr from the nixpkgs (channel >= 23.05)
nix run nixpkgs#fzf-makeNote You may need to enable experimental feature. In that case, execute the following command to enable them
echo "experimental-features = nix-command flakes" | tee ~/.config/nix/nix.conf
cargo install --locked fzf-make- Execute
fzf-makein the directory include makefile(file name should be one ofGNUmakefile,makefile,Makefile) - Select make command you want to execute. If you type some characters, the list will be filtered.
- Execute
fzf-makein the directory include makefile(file name should be one ofGNUmakefile,makefile,Makefile) - Press
Tabto move to the history pane. - Select make command you want to execute.
| Command | Description |
|---|---|
fzf-make |
Launch fzf-make |
fzf-make --repeat / fzf-make -r / fzf-make repeat |
Execute last executed target |
fzf-make --help / fzf-make -h / fzf-make help |
Show help |
fzf-make --version / fzf-make -v / fzf-make version |
Show version |
- Clone this repository
- Change the codes
- Run
make run
To execute test, run make test(needs nextest).
Or you can use nix to create a development shell with the project dependencies.
Within the repo root, execute the following command:
nix develop- Contributions are welcome!
- If you have a Feature request, please create an issue first.
- If you have added fzf-make to some package manager, please let me know. (or please send a PR to add how to install via the package manager in the
README.md) - If you have any questions, feel free to create an issue and ask.