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 - Ctrl+mouse click on function call does not navigate to function definition
Summary: Ctrl+mouse click on function call does not navigate to function definition
Status: RESOLVED FIXED
Alias: None
Product: javascript
Classification: Unclassified
Component: Navigation (show other bugs)
Version: 7.2
Hardware: PC Linux
: P3 normal with 1 vote (vote)
Assignee: Martin Fousek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-03-26 17:38 UTC by Vladimir Riha
Modified: 2012-09-15 05:11 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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.