IDE - Find box reaction to Enter key

I'm not really sure it is the right place and right form of asks but I would like to beg for the IDE developers to include the single code line below into the IDE source because lacking of this feature will turn me to death soon...
It would make the IDE find box react to Enter key when focus is on the find field:
view/findreplace/FindReplace.java, into initComponents(), right after creating swing components with new:

findField.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent evt){findButtonActionPerformed(evt); }});

Thanks a lot!