Show
Ignore:
Timestamp:
07/07/08 18:01:07 (5 months ago)
Author:
rob
Message:

Fixed #483: added substring matching in autocomplete minibuffer
* refactored textctrl_autocomplete to use the HtmlListBox? to highlight matched text in bold

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/peppy/actions/minibuffer.py

    r1418 r1467  
    413413        found = [] 
    414414        for match in self.sorted: 
    415             if match.startswith(text): 
     415            if match.find(text) >= 0: 
    416416                found.append(match) 
    417417        return found