Andrejs Jermakovics
Andrejs Jermakovics
You can use Tab to get to search results and then Down/Up keys to navigate. Using just Down would be convenient as well of course.
Ah yes, looks like the color is hardcoded at the moment https://github.com/ajermakovics/eclipse-instasearch/blob/master/instasearch/src/it/unibz/instasearch/ui/ResultLabelProvider.java#L61 Would be better to get the one from Eclipse. There's probably API to get it somehow...
what's strange is that the exception comes from Eclipse's classes. does re-indexing the workspace help at all?
Probably putting these lines in try-catch block: https://github.com/ajermakovics/eclipse-instasearch/blob/master/instasearch/src/it/unibz/instasearch/indexing/WorkspaceIndexerJDT.java#L193-L196 would skip the files in error. Building InstaSearch from source is easy with Maven if you're up for a little challange:).
Uh, my bad. pushed a fix https://github.com/ajermakovics/eclipse-instasearch/commit/09e1517326e521486f0bc62657d1e75e7e97a8e9
Some code pointers: - the [/ui](https://github.com/ajermakovics/eclipse-instasearch/tree/master/instasearch/src/it/unibz/instasearch/ui) package has all the UI elements - SearchViewControl.java contains the searchText It actually already does some autocompletion for projects/workingset/etc. so this issue could be...
You should be able to search without the quotes and exact search matches should appear at the top. Is it not the case? Which version are you using btw?
Exact searches is slightly tricky because we also want to support non-exact searches as well. For non-exact searches (parts of words) all words in code are split ([FileAnalyzer.java](https://github.com/ajermakovics/eclipse-instasearch/blob/53753e8adca4f7e66f0508abb52adf1201790f6d/instasearch/src/it/unibz/instasearch/indexing/FileAnalyzer.java#L42)). On the...
@lqbweb it doesn't use regular expressions for searching. not sure what you are proposing
Hi all, I managed to install it in Gradle using [jitpack](https://jitpack.io/#bulldog2011/bigqueue/bigqueue-0.7.0) ```gradle repositories { maven { url 'https://jitpack.io' } } dependencies { compile 'com.github.bulldog2011:bigqueue:bigqueue-0.7.0' } ``` Should work for Maven...