mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
8 lines
249 B
Bash
Executable File
8 lines
249 B
Bash
Executable File
#!/usr/bin/env bash
|
|
IFS=$'\n' out=("$(fzf-tmux --query="$1" --exit-0 --expect=ctrl-o,ctrl-e)")
|
|
key=$(head -1 <<< "$out")
|
|
file=$(head -2 <<< "$out" | tail -1)
|
|
if [ -n "$file" ]; then
|
|
[ "$key" = ctrl-o ] && open "$file" || ${EDITOR:-vim} "$file"
|
|
fi
|