You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
222 B
Fish
10 lines
222 B
Fish
6 years ago
|
function __fzfcmd
|
||
|
set -q FZF_TMUX; or set FZF_TMUX 0
|
||
|
set -q FZF_TMUX_HEIGHT; or set FZF_TMUX_HEIGHT 40%
|
||
|
if [ $FZF_TMUX -eq 1 ]
|
||
|
echo "fzf-tmux -d$FZF_TMUX_HEIGHT"
|
||
|
else
|
||
|
echo "fzf"
|
||
|
end
|
||
|
end
|