This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 210142

Summary: Ctrl+mouse click on function call does not navigate to function definition
Product: javascript Reporter: Vladimir Riha <vriha>
Component: NavigationAssignee: Martin Fousek <marfous>
Status: RESOLVED FIXED    
Severity: normal    
Priority: P3    
Version: 7.2   
Hardware: PC   
OS: Linux   
Issue Type: DEFECT Exception Reporter:

Description Vladimir Riha 2012-03-26 17:38:34 UTC
Sample code:


function init(config_in) {
   loadFiles("Foo");
}

function loadFiles(path) {
   return path;
}


Press Ctrl and left mouse on loadFiles("Foo"); => cursor should moved to the line with "function loadFiles(path){" but nothing happens


Product Version: NetBeans IDE Dev (Build 2012-03-26_07-07-31 )
Java: 1.7.0; Java HotSpot(TM) 64-Bit Server VM 21.0-b17
System: Linux version 2.6.38-13-generic running on amd64; UTF-8; en_US (nb)
Comment 1 junaidpv 2012-08-16 06:14:11 UTC
Yes, the issue exists in 7.2.
Comment 2 Martin Fousek 2012-09-15 05:11:09 UTC
Looks to be working well in the new editor for NB73. Marking as fixed since I check that in the NetBeans IDE Dev (Build 20120915-483aaeb6881f). The cursor is moved properly to the loadFiles function as well as to path parameter for the second case.