So if I want to open a table through query I usually do like
select * from databaseschema.dbo.tablename
and it displays the results in results window at the bottom of New Query window where I have typed the query.
If I want to open a proc, I have to go to that schema, open stored procedures, right click on proc and click modify which is when it opens in new query window in SSMS.
I want a statement (like mentioned in the first paragraph) where I don't have to do the manual selection through my mouse searching for the proc manually (mentioned in second paragraph) and I can just run the statement and it will open the proc in a new query window.
Is it possible?