Show pageOld revisionsBacklinksAdd to bookBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== Code Hint Agree Key ====== [[editing:auto_completion:hints|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 [[editing:auto_completion:hints|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 xml> <Code_Completion> <CodeHintAgreeByReturn>false</CodeHintAgreeByReturn> </Code_Completion> </code> by default it is **true**. to remove a Tab-key (from HippoEDIT 1.51.13), use similar flag: <code xml> <Code_Completion> <CodeHintAgreeByTab>false</CodeHintAgreeByTab> </Code_Completion> </code> default is **true**. #xml_option