KO
|
EN
gitlite โ search
Search
#javascript
#nodejs
#react
#python
#hacktoberfest
#ethereum
#reactjs
#rust
#nextjs
#css
#game
#css3
go-fzf
โ 69
Open GitHub โ
๐ Fuzzy Finder CLI and Library.
Download README (.md)
Explore Similar Repositories
ffmpegof
:
Go script that allows transparent load balancing of ffmpeg and ffprobe commands over SSH a.k.a. FFmpeg over Fabrics
PixUI
:
PixUIๆฏไธไธช่ทจ็ซฏ๏ผๆก้ข็ซฏใWeb็ซฏใ็งปๅจ็ซฏ๏ผ็UIๆกๆถ๏ผ้็จ็ฑปไผผไบFlutter็่ช็ปๅผๆ๏ผSkia๏ผ็ปๅถๆดไธชUI๏ผไฟ่ฏๅ็ซฏ็ๅ็ด ็บงไธ่ดๆงๅ็ฐใ
SepMark
:
SepMark: Deep Separable Watermarking for Unified Source Tracing and Deepfake Detection
NGEL_SLAM
:
[ICRA-2024] The official code for NGEL-SLAM: Neural Implicit Representation-based Global Consistent Low-Latency SLAM System
HOICLIP
:
CVPR 2023 Accepted Paper HOICLIP: Efficient Knowledge Transfer for HOI Detection with Vision-Language Models
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
go-fzf
?
Download (.md)
<h1 align="center">๐ go-fzf</h1> <p align="center"> <a href="https://pkg.go.dev/github.com/koki-develop/go-fzf"><img src="https://pkg.go.dev/badge/github.com/koki-develop/go-fzf.svg" alt="Go Reference"></a> <a href="https://github.com/koki-develop/go-fzf/releases/latest"><img src="https://img.shields.io/github/v/release/koki-develop/go-fzf?style=flat-square" alt="GitHub release (latest by date)"></a> <a href="https://github.com/koki-develop/go-fzf/actions/workflows/ci.yml"><img src="https://img.shields.io/github/actions/workflow/status/koki-develop/go-fzf/ci.yml?logo=github&style=flat-square" alt="GitHub Workflow Status"></a> <a href="https://codeclimate.com/github/koki-develop/go-fzf/maintainability"><img src="https://img.shields.io/codeclimate/maintainability/koki-develop/go-fzf?style=flat-square&logo=codeclimate" alt="Maintainability"></a> <a href="./LICENSE"><img src="https://img.shields.io/github/license/koki-develop/go-fzf?style=flat-square" alt="LICENSE"></a> </p> <p align="center"> Fuzzy Finder CLI and Library. </p> <p align="center"> English | <a href="./README.ja.md">ๆฅๆฌ่ช</a> </p> ## Contents - [Usage](#usage) - [CLI](#using-as-a-cli) - [Library](#using-as-a-library) - [LICENSE](#license) ## Usage ### Using as a CLI If you want to know what you can do with go-fzf, try the `gofzf` CLI. The `gofzf` CLI is built with go-fzf and can utilize most of go-fzf's features.  For more information, please refer to the [documentation](./docs/cli/README.md). ### Using as a library With go-fzf, you can easily create a highly customizable Fuzzy Finder. For example, you can create a Fuzzy Finder like the one below with just this simple code: ```go package main import ( "fmt" "log" "github.com/koki-develop/go-fzf" ) func main() { items := []string{"hello", "world", "foo", "bar"} f, err := fzf.New() if err != nil { log.Fatal(err) } idxs, err := f.Find(items, func(i int) string { return items[i] }) if err != nil { log.Fatal(err) } for _, i := range idxs { fmt.Println(items[i]) } } ```  For more information, please refer to the [documentation](./docs/library/README.md) #### Examples Various examples of how to use go-fzf are available in the [examples](./examples/) directory. ## LICENSE [MIT](./LICENSE)