diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 2000-02-23 17:20:27 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 2000-02-23 17:20:27 +0000 |
commit | a514ad4924c3447abf0e55e5ea7722fbe9d6ac09 (patch) | |
tree | 931a6d8c1d77854c698307fdf75f86407be077b3 /Functions | |
parent | 1054071bd60937ae8a9fbc16c1407211c6198a55 (diff) | |
download | zsh-a514ad4924c3447abf0e55e5ea7722fbe9d6ac09.tar.gz zsh-a514ad4924c3447abf0e55e5ea7722fbe9d6ac09.tar.xz zsh-a514ad4924c3447abf0e55e5ea7722fbe9d6ac09.zip |
zsh-workers/9844
Diffstat (limited to 'Functions')
-rw-r--r-- | Functions/Zle/predict-on | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Functions/Zle/predict-on b/Functions/Zle/predict-on index 9d3da7532..04cba8297 100644 --- a/Functions/Zle/predict-on +++ b/Functions/Zle/predict-on @@ -56,7 +56,7 @@ insert-and-predict () { local crs curcontext="${curcontext}" [[ -z "$curcontext" ]] && curcontext=::: - curcontext="${curcontext#*:}predict:" + curcontext="predict:${curcontext#*:}" comppostfuncs=( predict-limit-list ) zle complete-word |