m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-15 23:03:47 -05:00

removed tailing substitution causing all trailing space to be removed when extendedglob is set

This commit is contained in:
Chad Skeeters
2014-05-28 10:16:07 -05:00
parent 3b218b77eb
commit edf27f47f2

View File

@@ -198,7 +198,7 @@ if [ -n "$TMUX_PANE" -a ${FZF_TMUX:-1} -ne 0 -a ${LINES:-40} -gt 15 ]; then
}
else
fzf-file-widget() {
LBUFFER="${LBUFFER%% #}$(__fsel)"
LBUFFER="${LBUFFER}$(__fsel)"
zle redisplay
}
fi