Skip to content

mattn/libffui

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Last commit Repository Stars Issues Open Issues Bug Issues

eyecatch

libffui

Simple fuzzy select UI library.



libffui.mp4

🚀 How to use

#include "ffui.hpp"
#include <stdio.h>

#include <string>
#include <vector>

int main() {
  using namespace std;

  vector<string> choices = {
      "file1.cpp", "file2.h",   "main.cpp", "README.md", "config.json",
      "image.jpg", "script.sh", "data.csv", "test.cpp",  "util.h"};

  string selected = ffui(choices);
  printf("%s\n", selected.c_str());

  return 0;
}

⬇️ Install

Using CMake

WIP

⛏️ Development

cmake -B build && cmake --build build/ && ./build/app

📝 Todo

  • Create C API.
  • Add filter process after transform.

📜 License

MIT

🧩 Modules

👏 Affected projects

About

Simple fuzzy select UI library.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published

Languages

  • C++ 84.0%
  • CMake 16.0%