<div dir="ltr">It would be very convenient to implement a search also by matching any part of the class name (method, etc.), and not just by the beginning.<br>And what's more, it can be case insensitive. At least that's how it was in JW Browser and seems to be quite useful.<br>For myself, I made the following changes in the rgpluaclassbrowser.lua file:<br><br>Original line 160:<br>    > if include_all or k:find(search_text) == 1 then <<br>Search in any part of a word:<br>    > if include_all or k:find(search_text) then <<br>And a case-insensitive version:<br>   > if include_all or string.find(string.lower(k), string.lower(search_text)) then <<br><br>Of course, string.lower(search_text) should be moved outside the block, but these are details...<br><br>I am writing about this because it seems that it may be useful to someone else. Thank you Robert!<br></div>