Questions tagged [go-to-definition]
69 questions
3
votes
1 answer
Visual Studio Code Go To Definition not working properly
I'm working on a simple Node.js project with NextJS in which the Go To Definition doesn't work properly in vscode.
I made a small video with the difference between Visual Studio Code and WebStorm, in which WebStorm, works perfectly out of the box,…

Philipos D.
- 2,036
- 1
- 26
- 33
3
votes
2 answers
Go To Definition for PHP extensions in VSCode
When I use Composer 'Go To Definition' works well. But it doesn't work for PHP core extensions like MySQLi. Ubuntu is my OS and I have searched for PHP files for those libraries and only find their .so files, maybe that's why I can't 'Go To…

Maria Gabriela
- 127
- 1
- 1
- 7
3
votes
3 answers
F12 -- Goto Definition does not work with Visual Studio 2015
Has anyone run into this before? In my freshly installed copy of Visual Studio 2015 Professional I simply cannot get 'F12 - Goto Definition' to work. Nothing happens when I try it. What is more, if I try 'ALT-F12 -- Peek at definition', I just get a…

ForeverLearning
- 6,352
- 3
- 27
- 33
3
votes
2 answers
Can ReSharper always jump to view's .cshtml in ASP.NET MVC project instead of asking me?
I'm talking about this menu, which appears when I press Ctrl+B:
In 99.99% I want to see a .cshtml, could it be made a default option (so that resharper would open the file without asking)?

vorou
- 1,869
- 3
- 18
- 35
3
votes
1 answer
Netbeans - disable CTRL+Click as shortcut for "Go To Definition"
Netbeans (7.2 on Win7 Pro) has a nifty feature whereby you can hold CTRL then click variables to "Go to Definition".
The project in which I'm working is over a network share. Because of this, my indexing is quite slow (which is fine). The problem…

Slobaum
- 669
- 7
- 17
2
votes
1 answer
Go to definition for F# library
It is probably a trivial question. But how can I link the F# source code to the Visual Studio so that "Go to definition" would work for F# functions (such as Seq.iter etc.)?

Oldrich Svec
- 4,191
- 2
- 28
- 54
2
votes
1 answer
clicking "Go To Definition" - Why doesn't Visual Studio 2010 go to Object Browser like Visual Studio 2008?
When clicking "Go To Definition" after right clicking a .NET object (of a standard .NET class type) in Visual Studio 2010, the Object Explorer doesn't come up like it did in Visual Studio 2008. Object Browser was nice because it gave documentation…

JustBeingHelpful
- 18,332
- 38
- 160
- 245
2
votes
3 answers
Go To definition does not work in same file with VSCODE + VETUR
My vue.js configuration is
vue.js 2.0
use vue.cli
webpack
javascript not typescript
use multiple root
server : server project
client/dashboard : web client project(this is vue project)
On follow code, "go definition" does not work with "could…

김민석
- 23
- 3
2
votes
0 answers
How to configure dynamically includePath in vscode
In my project, there are two sub projects: basis_libs and services.
./-
|--- basis_libs
| |--- xxx
| ...
| |--- yyy
|
|--- services
|--- server1
|--- server2
|--- server3
...
…

Yves
- 11,597
- 17
- 83
- 180
2
votes
1 answer
VS Code "Go To Definition" does not exist - Javascript
I am using VScode version 1.57.
The issue is that it Simply cant not navigate to the definition, "Go To definition" not working.
as you can see in an image it does not exists.
What I have tried:
clearing settings.json
deleting all…

Beka Batmanashvili
- 151
- 1
- 7
2
votes
0 answers
Is there any way I could get Go to Definition on Visual Studio Code with other extension than .js?
Today I switched some project code base to use Node's ES modules which need to use .mjs file extension.
Sadly, this breaks Visual Studio Code's Go to definition when an imported resource comes from another module.
Is there any way I can tell Visual…

Matías Fidemraizer
- 63,804
- 18
- 124
- 206
2
votes
1 answer
List function callers in Atom
I write Go code in Atom. I see a feature is go/jump to Definition function. But I want to view/show a list of callers to this function.

kien bui
- 1,760
- 2
- 17
- 33
2
votes
0 answers
Visual Studio Custom Go To Definition
Assuming a solution containing two web project ("A" and "B"), which "A" loads in "B", and "B" is the presentation layer.
So when HTML file in project "A" addressing a JavaScript file located in project "B", then by firing Go To definition (F12)…

Xaimaran
- 403
- 4
- 17
2
votes
1 answer
Computed GOTO fails to execute
I encounter a strange behaviour in Fortran 77 code (gfortran compiler),
the following line works perfectly (jumping to label 202 for iprob=202):
if( iprob .eq. 202 ) goto 202
!...some commands...
202 continue
However, its…

user92202
- 21
- 2
2
votes
1 answer
Changes on overloaded method behaviour between visual studio 2013 and 2015
Have have big problem with Visual Studio 2013 and 2015. In one class, i have defined this two methods:
public List LoadData(string connectionStringName = "", string optWherePart = "", params object[] parameter)
public List…

BendEg
- 20,098
- 17
- 57
- 131