Questions tagged [code-navigation]

47 questions
0
votes
0 answers

Source code navigation for routes in PhpStorm?

In PhpStorm, the File Structure (F12 on Mac) and Structure (⌘7) actions let you see a list of functions declared in the current file, so as to quickly jump to any of them. Is there anything similar to quickly navigate through route…
Fabien Snauwaert
  • 4,995
  • 5
  • 52
  • 70
0
votes
0 answers

Code Navigation for JavaScript in VSCode: Navigating to external class methods

I am facing a bit difficulty in navigation in VSCode while using JavaScript. Using F12, I am able to navigate to internal class methods but suppose I have a call to some external classes' method, using a global object, then F12 or "Go to definition"…
0
votes
2 answers

Emacs RTags: rtags-find-references-at-point

I just installed RTags with Emacs but I am a bit frustrated because while using "rtags-find-references-at-point", Emacs open another window with the different references but do not focus on it. Meaning, each time I am using this functionality, I…
manzerbredes
  • 310
  • 2
  • 13
0
votes
1 answer

How to disable function overloading detection in CLion for code navigation?

I'm using CLion to write mostly C code, in *.c files. How may I disable the IDE from interpreting the code as C++ for the code navigation feature, so that I can navigate symbols by name only, disregarding the parameters used in function calls? I'd…
Spidey
  • 2,508
  • 2
  • 28
  • 38
0
votes
0 answers

Navigate to sources part of other solutions

When using a local NuGet repository is it possible to set up Visual Studio so that when trying to navigate to implementation of some symbol which is part of a local NuGet dependency it would open the actual source code of it (instead of just…
Răzvan Flavius Panda
  • 21,730
  • 17
  • 111
  • 169
0
votes
1 answer

Go to definition in the base class

In Visual Studio when I have a base class with method public virtual void A() and a derived class with method public override void A() how can I navigate from the latter to the definition in the base class? When I view the Call Hierarchy I see: A -…
Gerard
  • 13,023
  • 14
  • 72
  • 125
0
votes
0 answers

In PhpStorm, can Ctrl+Click go to class definition in PHP rather than the constructor?

I'm using PhpStorm and something that lately is bothering me a lot is this scenario. Suppose I have this setup: // File1.php abstract class AbstractBase { public function __construct() { } } // File2.php class MyClass extends AbstractBase…
Vilx-
  • 104,512
  • 87
  • 279
  • 422
0
votes
1 answer

Eclipse style alt left/right navigation within emacs

I am switching to emacs and in the process of configuring my emacs environment, I am stuck with implementing a functionality which I used to have in eclipse and IntelliJ. Move back and forth in code with alt left/right keys. I want it to be able to…
Anoop
  • 5,540
  • 7
  • 35
  • 52
0
votes
1 answer

Is there a shortcut for switching panels in PyCharm 3.4.1?

If i'm currently editing the db/transaction.py file, line 158 (on the left), and would like to switch to the right panel (to edit the admin/404.html), is there a shortcut that allows me to do this? I'd like to exclude right from the start the…
vlad-ardelean
  • 7,480
  • 15
  • 80
  • 124
0
votes
1 answer

find all public variables in a netbeans project?

I'm debugging a project with many classes and forms and would be very useful for me to find all the public variables used in the project. Is there any way to do this in Netbeans? Neither I have been able to find a pluging for Netbeans to achieve…
fpinero
  • 5
  • 2
0
votes
1 answer

Netbeans Find Usages on class references from (non-open) Maven artifacts

Is there a setting in Netbeans when we do Find Usages. i.e. Find Usages on class references from (non-open) Maven artifacts Can we turn ON/OFF for finding in Maven repositories ? I am using the latest Netbeans 7.4
copenndthagen
  • 49,230
  • 102
  • 290
  • 442
0
votes
1 answer

Navigate between loosely related classes based on naming convention

In my current project we have many parts where we have something as follows: var request = new ThingRequest {someId = }; ThingResponse response = dispatcher.Get(request); Where dispatcher fetches a class with the name…
Boris Callens
  • 90,659
  • 85
  • 207
  • 305
0
votes
1 answer

Pinned tab sets Visual Studio 2012

Does anyone know of any plugins or extensions for VS 2012 that allow you to create pinned tab sets/groups? By this I mean a way of assigning a number of tabs/files to a group (think grouping units in an RTS game) and preferably then being able to…
Sam Shiles
  • 10,529
  • 9
  • 60
  • 72
0
votes
2 answers

Best way to thoroughly understand code in glibc

I am working on modifying glibc for my own purpose. However, it is very to difficult to relate difference pieces of code in different files of glibc as there is so much of it. I want a functionality for example, such that when I see a function…
pythonic
  • 20,589
  • 43
  • 136
  • 219
-1
votes
1 answer

How perform "Go To Definition" in Visual Studio without using mouse click

I would like to perform Go To Definition without taking hands off the keyboard. Is it possible to change [Ctrl + Left Click] to [Ctrl + AnyKey] when cursor hover the target?