Goto Declaration/Goto Implementation

pavel_j

Member²
Hello,
I still can't find key configuration for:
- Goto Declaration/Goto Implementation - currently we must still use CTRL+right/left mouse button

(or I miss something?)

I'm testing PLSQL 13 beta 2
 
Last edited:
I have found a workaround. I use autohotkey - opensource

I run this script, which solves me several problems with PLSQL Developer, after running this script I have available these functionalities under hotkeys:
1. CTRL+B (cursor on procedure) => goto declaration
2. CTRL+ALT+B (cursor on procedure) => goto implementation
3. CTRL+J => goto object search field
4. CTRL+M => goto editor
5. ESC => closes floating window

You can configure own keys

#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
 
Last edited:
Back
Top