#ifWinActive ahk_class TPLSQLDevForm
^b:: ;Ctrl+b
x_pos := A_CaretX ;finds position of text cursor
y_pos := A_CaretY
MouseMove, x_pos, y_pos ;move mouse cursor to position
Send ^{Click, left} ;sends CTRL+left mouse click (Goto definition)
return
^!b:: ;Ctrl+Alt+b
x_pos := A_CaretX
y_pos := A_CaretY
MouseMove, x_pos, y_pos
Send ^{Click, right} ;sends CTRL+left mouse click (Goto implementation)
return
^j:: ;CTRL+J => focus to object search box
ControlFocus, TEdit1
return
^m:: ;CTRL+M =>focus to editor
ControlFocus, TSyntaxMemo1
return
#ifWinActive ahk_class TdxFloatForm
Esc::
WinClose ;close floating windows by ESC