Rather than switching to Ctrl 1 and Ctrl 2 when typing to pull up the properties / methods list, if you are an autohotkeys user http://www.autohotkey.com/ the following script will allow you to pull up the list by using a double "," character for properties or a double "." for methods.
Take a look and let me know what you think (or if you have any improvements.
Code: Select all
#ifWinActive JADE
,::
if (A_PriorHotkey = "," and A_TimeSincePriorHotkey < 400)
{
Send, {Left}
Send, {Delete}
Send, ^1
return
}
else
{
Send, {,}
return
}
.::
if (A_PriorHotkey = "." and A_TimeSincePriorHotkey < 400)
{
Send, {Left}
Send, {Delete}
Send, ^2
return
}
else
{
Send, {.}
return
}