Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Shortcut key for 'View in Object Browser'

Does anyone know if there is a shortcut key for viewing the selected object (in the text editor) in the object browser?

I am sure there was one, but I cannot find it, or anything that seems to work in the key bindings dialog.

eg:

string test = string.empty;

if (string.isnullorempty(test))
{                          ^ caret here
    ...
}

pressing the key would open the object browser to System.String

like image 445
Pondidum Avatar asked Mar 26 '09 13:03

Pondidum


1 Answers

This navigates to the correct class inside the object browser.

Shift+Alt+F12, then right click in the results and select Browse Definition

or

Ctrl+Alt+J, then type the name in the search box

like image 67
atreeon Avatar answered Oct 19 '22 01:10

atreeon