Skip to content

Latest commit

 

History

History
129 lines (100 loc) · 5.24 KB

README-de.md

File metadata and controls

129 lines (100 loc) · 5.24 KB

fzf-make is a command line tool that executes commands using fuzzy finder with preview window. Currently supporting make, pnpm.

License:MIT Latest Release crates.io Crates.io Total Downloads

[English] [Deutsch] [Français]

🛠️ Eigenschaften

  • Select and execute a make target or pnpm scripts using fuzzy-finder with a preview window by running fzf-make!
  • Execute the last executed command(By running fzf-make --repeat.)
  • Command history
  • [make] Support include directive -Support make, pnpm. Scheduled to be developed: yarn, npm.
  • (Scheduled to be developed) Support config file

👓 Voraussetzungen

  • (If you install fzf-make via a package manager other than Homebrew) bat
    • Für die Zukunft ist geplant, dass es auch mit cat funktioniert, aber derzeit funktioniert es nur mit bat.

📦 Installation

macOS

Homebrew

Man braucht bat nicht zu installieren, da fzf-make es automatisch über Homebrew installiert.

# install
brew install kyu08/tap/fzf-make
# update 
brew update && brew upgrade fzf-make

Arch Linux

fzf-make kann aus dem AUR mit Hilfe eines AUR-Helpers installiert werden. Zum Beispiel:

paru -S fzf-make

NixOS / Nix (package manager)

fzf-make kann aus dem Repository ausgeführt werden (neueste Version)

nix run github:kyu08/fzf-make

Oder nixpkgs (channel >= 23.05)

nix run nixpkgs#fzf-make

Note Möglicherweise müssen die experimentellen Funktionen aktiviert werden. Folgender Befehl muss ausgeführt werden, um sie zu aktivieren: echo "experimental-features = nix-command flakes" | tee ~/.config/nix/nix.conf

OS-unabhängige Methode

Cargo

cargo install --locked fzf-make

💡 Nutzung

Run target using fuzzy finder

  1. Execute fzf-make in the directory you want to run make target, or pnpm scripts.
  2. Command auswählen, welches ausgeführt werden soll. If you type some characters, the list will be filtered. demo demo

Run target from history

  1. Execute fzf-make in the directory you want to run make target, or pnpm scripts.
  2. Press Tab to move to the history list
  3. Select make command you want to execute. demo

How fzf-make judges which command runner can be used

make

Whether makefile(file name should be one of GNUmakefile, makefile, Makefile) is in the current directory.

pnpm

Whether package.json and pnpm-lock.yaml are in the current directory.

Commands Supported

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

💻 Entwicklung

  1. Dieses repository klonen
  2. Codes ändern
  3. make run ausführen

Um den Test auszuführen, führe make test (benötigt nextest) aus.

nix

Oder man kann nix verwenden, um eine Entwicklungsshell mit den Dependencies zu erstellen.

Führe im Stammverzeichnis des Repo den folgenden Befehl aus:

nix develop

👥 Contribution

  • Contributions sind willkommen!
  • Wenn du eine Funktionsanfrage hast, erstelle bitte zuerst ein Issue.
  • Wenn du fzf-make zu einem Paketmanager hinzugefügt hast, lass es mich bitte wissen. (oder sende bitte einen PR, um die Installation über den Paketmanager in die README.md aufzunehmen)
  • Wenn Fragen bestehen, gerne einfach ein Issue erstellen und fragen.

🗒 Verwandte Artikel