Elad Benda
Elad Benda

Reputation: 36656

how to navigate to pasted stack trace visual-studio

I remember I used to

navigate to pasted stack trace by clicking

ctrl + E + T

is it a resharper utility?

What's the build in equivalent for visual studio 2012?

Upvotes: 24

Views: 8947

Answers (5)

user114676
user114676

Reputation: 512

The stack trace explorer extension does not seem to work with current vscode version, but I found that if I just create a textfile with the stacktrace, and in the terminal type 'cat textfile' then I can Ctrl-click the lines of the stacktrace. (I'm on linux, 'cat' will print the contents of the file).

Upvotes: 1

Matt Frear
Matt Frear

Reputation: 54801

Visual Studio 2022 now contains Stack Trace Explorer out of the box.

View -> Other Windows -> Stack Trace Explorer

or

Ctrl+E, Ctrl+S

Upvotes: 13

Nir
Nir

Reputation: 2044

There is an extension Visual Studio 2017 called 'Stack Trace Explorer', you can get it here

Upvotes: 10

Joe White
Joe White

Reputation: 97656

The Stack Trace Explorer is a ReSharper feature. There is no equivalent built into Visual Studio. (If there was, why would they take all the time and expense to add the feature to ReSharper?)

Upvotes: 14

knaki02
knaki02

Reputation: 183

Are you looking for ctrl+shift+v ?

Upvotes: -2

Related Questions