From 6076c474f2427ec9a75cecab1fc95f7cd9f066f6 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Thu, 24 Jul 2014 10:49:50 +0100 Subject: unposted: replace-argument can take negative prefix to count from end --- Functions/Zle/replace-argument | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'Functions') diff --git a/Functions/Zle/replace-argument b/Functions/Zle/replace-argument index b43fc39bb..0ef3de7b5 100644 --- a/Functions/Zle/replace-argument +++ b/Functions/Zle/replace-argument @@ -12,21 +12,23 @@ if (( ${#BUFFER} == 0 )); then CURSOR=${#BUFFER} fi -local widget=$WIDGET -integer numeric cursor=CURSOR +local widget=$WIDGET numeric +integer cursor=CURSOR if (( ${+NUMERIC} )); then numeric=$NUMERIC -else - numeric=-1 fi local reply REPLY REPLY2 integer index split-shell-arguments -if (( numeric >= 0 )); then - index=$(( 2 + 2*numeric )) +if [[ -n $numeric ]]; then + if (( numeric < 0 )); then + (( index = ${#reply} - 1 + 2*(numeric+1) )) + else + (( index = 2 + 2*numeric )) + fi else - index=$((REPLY & ~1 )) + (( index = REPLY & ~1 )) fi local edit -- cgit 1.4.1