diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2008-06-24 16:09:28 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2008-06-24 16:09:28 +0000 |
commit | 46c8127e939e9102f27c5a10733cb444bf898a30 (patch) | |
tree | 0feedbf4a1f20c2e54209f3010ae11b820542f21 /Functions/Zle/modify-current-argument | |
parent | c52864df2fd9fbf786ecd176a21eb34763993e05 (diff) | |
download | zsh-46c8127e939e9102f27c5a10733cb444bf898a30.tar.gz zsh-46c8127e939e9102f27c5a10733cb444bf898a30.tar.xz zsh-46c8127e939e9102f27c5a10733cb444bf898a30.zip |
25244: add subword-range style
Diffstat (limited to 'Functions/Zle/modify-current-argument')
-rw-r--r-- | Functions/Zle/modify-current-argument | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Functions/Zle/modify-current-argument b/Functions/Zle/modify-current-argument index be244ccc1..dd0b85a82 100644 --- a/Functions/Zle/modify-current-argument +++ b/Functions/Zle/modify-current-argument @@ -4,10 +4,10 @@ # cursor with that. Ensure the expression is suitable quoted. # # For example, to uppercase the entire shell argument: -# modify-current-word '${(U)ARG}' +# modify-current-argument '${(U)ARG}' # To strip the current quoting from the word (whether backslashes or # single, double or dollar quotes) and use single quotes instead: -# modify-current-word '${(qq)${(Q)ARG}}' +# modify-current-argument '${(qq)${(Q)ARG}}' # Retain most options from the calling function for the eval. # Reset some that might confuse things. |