Autocomplete with TAB
![]() ![]() |
I noticed that the autocomplete feature for Goto (CTRL+g) and Move (CTRL+m) only activated when pressing Enter, and not when pressing Tab. I've gotten very used to pressing tab to finish autocomplete lists in search boxes, Launchy, gmail, Firefox address bar, etc. that I decided to change it (having no javascript experience!) Basically I found the part that listens to the key presses for the autocomplete box... commented out the code that disables the Tab key within the autocomplete text box and then added code similar to that for pressing "Enter" except using the "Tab" keycode instead. Here's the final bit of code (starting at line 668): var _handleKeyPressEvent = function(event)
You can make this modification to your own script "on the fly" or you can wait for the author of the script to update it. To modify it yourself just right-click the monkey > Manage User Scripts > select "A Bit Better RTM" > Click Edit > select a text editor if prompted (try C:\WINDOWS\system32\notepad.exe if you aren't sure) > find the above code within the script (CTRL+F then "autocompleteList.parent.doCallback" should take you there) > make the modifications shown above > save the file > reload RTM task page to test changes > CTRL+G then type "Inb" then TAB and you should Goto your Inbox! |

