zsh-users
 help / color / mirror / code / Atom feed
From: Bart Schaefer <schaefer@brasslantern.com>
To: zsh-users@zsh.org
Subject: Re: Match to the end of string when using (S) flag
Date: Wed, 2 Nov 2016 08:50:25 -0700	[thread overview]
Message-ID: <161102085025.ZM32286@torch.brasslantern.com> (raw)
In-Reply-To: <1478069609.99952.774686337.5CA69ECB@webmail.messagingengine.com>

On Nov 1, 11:53pm, Sebastian Gniazdowski wrote:
} Subject: Re: Match to the end of string when using (S) flag
}
} On Tue, Nov 1, 2016, at 02:23 PM, Bart Schaefer wrote:
} > You can do this with just a counter, you don't need a math function:
} > 
} >   i=$#region_highlight
} >   : ${text//(#mi)(${~colsearch_pattern})/
} >       ${region_highlight[++i]=$((offset + MBEGIN))}
} >       ${region_highlight[++i]=$((offset + MEND))}
} >       ${region_highlight[++i]=${__hsmw_hl_color}}}
} 
} Couldn't get this to work, although $i before and after differs much,
} however looked at contents and there are lines like:
} 
} 193 -1 none
} -1 -1 none
} -1 -1 bg=17
} -1 -1 none
} 
} so something doesn't append well.

Here was my dummy test case:

setopt extendedglob
text="123 Abc 456 Ade 789 Afg 0"
colsearch_pattern="A??"
() {
  local -ah region_highlight=( 1 1 xy=z )
  local i=$#region_highlight offset=3 __hsmw_hl_color="pd=q"
  : ${text//(#mi)${~colsearch_pattern}/
      ${region_highlight[++i]=$((offset + MBEGIN))}
      ${region_highlight[++i]=$((offset + MEND))}
      ${region_highlight[++i]=${__hsmw_hl_color}}}
  print -r -- $region_highlight
}

With the result

1 1 xy=z 8 10 pd=q 16 18 pd=q 24 26 pd=q

(note offset=3 so 8 10 means $text[5,7] which is Abc, etc.)


  reply	other threads:[~2016-11-02 15:50 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-01 14:25 Sebastian Gniazdowski
2016-11-01 16:27 ` Sebastian Gniazdowski
2016-11-01 18:29   ` Sebastian Gniazdowski
2016-11-01 21:23     ` Bart Schaefer
2016-11-02  6:53       ` Sebastian Gniazdowski
2016-11-02 15:50         ` Bart Schaefer [this message]
2016-11-02  9:46       ` Peter Stephenson
2018-11-07 12:30       ` Sebastian Gniazdowski
2018-11-07 15:25         ` Bart Schaefer
2018-11-07 17:16           ` Sebastian Gniazdowski

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=161102085025.ZM32286@torch.brasslantern.com \
    --to=schaefer@brasslantern.com \
    --cc=zsh-users@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).