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 else
fzf-file-widget() { fzf-file-widget() {
LBUFFER="${LBUFFER%% #}$(__fsel)" LBUFFER="${LBUFFER}$(__fsel)"
zle redisplay zle redisplay
} }
fi fi