skim
skim copied to clipboard
Fuzzy Finder in rust!
Hello, I've traced the following vurnerability in a downstream crate to `skim`: ```bash $ cargo audit # in my crate Crate: nix Version: 0.19.1 Title: Out-of-bounds write in nix::unistd::getgrouplist Date:...
Hello. I'm trying to move to skim from fzf but cant find any alternative to this plugin: https://github.com/Aloxaf/fzf-tab Can you recommend something?
Fixes #464. Also preserves the order of `--pre-select-items` when returning them unchanged. The solution is very simple and natural. I have relied on this behavior a lot during the last...
The provided [example](https://github.com/lotabout/skim/blob/68cba72cf98d2d387d578a9be695c2115a7fdf92/examples/custom_keybinding_actions.rs#L29) does not work for pressing `enter` on a list item: ```bash cargo run --example custom_keybinding_actions .. Creating a new item ``... ``` The callback prints an empty...
Unlike awk, which is even defined in POSIX, perl is not pre-installed on all *nix systems. This awk command is functionally equivalent to the original perl command. If extended_history is...
Skim currently uses derive_builder 0.9 in rust. There is a 0.10 release for it out which should not cause any breaking changes. Would be nice to get it updated.
In multi-select, items are currently returned according to some internal order, rather than in the order in which they were selected. For applications where the item order matters, it would...
The widget I worked till now is: ``` skim-history() { origquery=${BUFFER} output=$(history -1 1 | sd '^[ ]*[0-9]*[ ]*' '' | sk --tac --no-sort --exact) if [ $? -eq 0...
I am using `0.9.4` I want to fuzzy search all sub-directories and cd to the selected one when pressed enter. What I tried so far is: fd -t d |...