mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
4 lines
141 B
Plaintext
4 lines
141 B
Plaintext
|
|
#!/usr/bin/env bash
|
||
|
|
IFS=$'\n' files=($(fzf-tmux --query="$1" --multi --select-1 --exit-0))
|
||
|
|
[[ -n "$files" ]] && ${EDITOR:-vim} "${files[@]}"
|