9 releases
Uses old Rust 2015
0.2.1 | Sep 27, 2024 |
---|---|
0.2.0 | Apr 19, 2024 |
0.1.6 | Mar 13, 2024 |
0.1.5 | Sep 28, 2023 |
0.1.1 | Oct 29, 2021 |
#107 in Text editors
18KB
331 lines
flx-rs
Rewrite emacs-flx in Rust for dynamic modules
🔨 Usage
Add this to your Cargo.toml
:
[dependencies]
flx-rs = "0.2.0"
This package only exposed one function flx_rs::score
that takes only two arguments
(str: &str, query: &str)
.
use flx_rs;
fn main() {
let result : Option<flx_rs::Result> = flx_rs::score("switch-to-buffer", "stb");
println!("Score: {}", result.unwrap().score); // Score: 237
}
See the official documentation at https://docs.rs/flx-rs/latest/flx_rs/.
📂 Example
- flx-rs - Emacs package uses this as a dynamic module
⚜️ License
flx-rs
is distributed under the terms of the MIT license.
See LICENSE for details.