[TxMt] Re: Go to occurrence of a char in current line
Allan Odgaard
mailinglist at textmate.org
Sat May 8 20:01:58 UTC 2010
On 7 Apr 2010, at 04:01, Jorge Luis Mendez wrote:
> Is there a shortcut or bundle that allows us to move to the [n]th
> occurrence of a char in the the current line?
Not directly but it can be achieved using a regexp search like: (?m).
{200}
Here (?m) makes . also match newlines and {200} ask for 200 repeats,
so it should match up to the 200th character.
More information about the textmate
mailing list