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
1 changed files with 1 additions and 1 deletions

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