Crates.io | fzf-make |
lib.rs | fzf-make |
version | 0.37.0 |
source | src |
created_at | 2023-10-07 16:18:53.149732 |
updated_at | 2024-10-29 02:49:57.87892 |
description | A command line tool that executes make target using fuzzy finder with preview window. |
homepage | |
repository | https://github.com/kyu08/fzf-make |
max_upload_size | |
id | 996461 |
size | 186,608 |
fzf-make
is a command line tool that executes make target using fuzzy finder with preview window.
fzf-make
!fzf-make --repeat
.)include
directivecat
as well, but currently it only works with bat
.You don't need to install bat
because fzf-make
will install it automatically via Homebrew.
# install
brew install kyu08/tap/fzf-make
# update
brew update
brew upgrade fzf-make
fzf-make
can be installed from the AUR using an AUR helper. For example:
paru -S fzf-make
fzf-make
can be run from the repository (latest version)
nix run github:kyu08/fzf-make
Or from the nixpkgs (channel >= 23.05)
nix run nixpkgs#fzf-make
Note 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
fzf-make
in the directory include makefile(file name should be one of GNUmakefile
, makefile
, Makefile
)fzf-make
in the directory include makefile(file name should be one of GNUmakefile
, makefile
, Makefile
)Tab
to move to the history pane.Command | Description |
---|---|
fzf-make |
Launch fzf-make |
fzf-make --repeat / fzf-make -r / fzf-make repeat |
Execute last executed target |
fzf-make --history / fzf-make -h / fzf-make history |
Launch fzf-make with the history pane focused |
fzf-make --help / fzf-make help |
Show help |
fzf-make --version / fzf-make -v / fzf-make version |
Show version |
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
README.md
)