options:xml:code-hint-agree-by-return

Code Hint Agree Key

Code hints are helping during typing by suggesting you best guesses they get after examination of words statistics, dictionaries and templates.

By pressing Tab or Enter, when Code Hint is shown, you can insert it into your code, not typing rest of chars.

If you want to remove Enter-key from agree keys (and use only Tab) you can use following XML flag from settings.xml:

<Code_Completion>
   <CodeHintAgreeByReturn>false</CodeHintAgreeByReturn>
</Code_Completion>

by default it is true.

to remove a Tab-key (from HippoEDIT 1.51.13), use similar flag:

<Code_Completion>
   <CodeHintAgreeByTab>false</CodeHintAgreeByTab>
</Code_Completion>

default is true.

#xml_option