Make DLTK not case sensitive [message #1272547] |
Tue, 18 March 2014 03:00 |
Eclipse User |
|
|
|
Hi,
I am using DLTK 3.0 for creating an IDE, to provide features like indexing, searching and content assist.
I need to make DLTK indexing as case insensitive. Is it possible to set a flag in settings or in any class to achieve this?
I saw code for Index class, where it sets some flags for search criteria, but how could I make search and indexing as case in-sensitive?
/**
* Mask used on match rule for indexing.
*/
static final int MATCH_RULE_INDEX_MASK = SearchPattern.R_EXACT_MATCH
| SearchPattern.R_PREFIX_MATCH | SearchPattern.R_PATTERN_MATCH
| SearchPattern.R_REGEXP_MATCH | SearchPattern.R_CASE_SENSITIVE
| SearchPattern.R_CAMELCASE_MATCH;
Thanks for your help in advance.
Regards,
Saroj
|
|
|
Powered by
FUDForum. Page generated in 0.06772 seconds