Pre-requisites: open the following Java-file in editor:
public class Test
{
private String text = "";
public String getText()
{
return text;
}
public static void main(String[] args)
{
Test test = new Test();
System.out.println(test.text);
System.out.println(test.getText());
}
}
Testcase:
- Middle-click on "text" field.
- Consulo would ask "Do you want to search for accessors of 'fieldName'". Answer "No".
- Consulo shows drop-down list with search results:

- Click on "Open Find Usages Toolwindow" button.
Expected result: Consulo opens Tool-window immediately.
Actual result: Consulo repeats question "Do you want to search for accessors of 'fieldName'".