> 
> leegold wrote:
> > When I do Contrl-E it goes correctly to the matching bracket. But if I
> > do Cntrl-E again nothing happens.
> > 
> > IMO, it should go back to the original matching bracket. Every time I
> > hit Contol_E the cursor should go to a matching bracket if it's at a
> > bracket - the command should not stop working after one time.
> > 
> > Is there a fix for this?
> 
> As ALWAYS when reporting a problem, please provide version and 
> platform information... and in this case, the source language would be 
> of use too.
> 
> BTW, this functionality works fine in all its permutations for me.
> 
> Robert Roessler
> [EMAIL PROTECTED]
> http://www.rftp.com
> 

I should mention SciTE does everything else just about perfectly!
Editors can be a "touchy-feely" kind of thing - i realize this...

I am on Win2k. The SciTE version is: 1.57.  

Note: If I just put brackets and nothing else in SciTE like:

[

]

it'll behave OK - with each control_E it'll go back and forth between
the brackets as expected.

Heres code were it does the match one time only then stops on any brace
pair I try in the snippet below:

<?php 

include('rss_fetch.inc');

$rss = fetch_rss('http://www.foozztopbar.com/feed.ns?index=space');

// echo '<pre>'; print_r($rss);echo '</pre>';

if ($rss)
  {
      // Show first 5
      // $items = array_slice($rss->items, 0, 5);
      $items = $rss->items;
      foreach ($items as $item ) 
        {
          echo '<li><a href="'.$item['link'].'">'.$item['title'].'</a> -
          '.$item['description'].'</li>';
        }
  }
else 
  {
      echo '<h2>Error:</h2><p>'.magpie_error().'</p>';
  }

?>
_______________________________________________
Scite-interest mailing list
[email protected]
http://mailman.lyra.org/mailman/listinfo/scite-interest

Reply via email to