8 lines
290 B
Fish
8 lines
290 B
Fish
function tuis --description 'fzf select tui'
|
|
# one eval per selection — a single eval of the joined lines would run the
|
|
# first command with the other selections as its arguments
|
|
for cmd in (cat $HOME/.config/misc/tuis.txt | command fzf --multi)
|
|
eval $cmd
|
|
end
|
|
end
|