| Summary: | Ctrl+Click on a link (source code navigation) is sometimes ignored | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Tools] CDT | Reporter: | Ricardo Jasinski <jasinski> | ||||
| Component: | cdt-editor | Assignee: | Project Inbox <cdt-editor-inbox> | ||||
| Status: | RESOLVED WORKSFORME | QA Contact: | Anton Leherbauer <aleherb+eclipse> | ||||
| Severity: | normal | ||||||
| Priority: | P3 | CC: | agreatwar, remy.suen, zeratul976 | ||||
| Version: | 6.0 | ||||||
| Target Milestone: | --- | ||||||
| Hardware: | PC | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Attachments: |
|
||||||
|
Description
Ricardo Jasinski
Created attachment 174363 [details] Sample project/workspace (C++) to reproduce bug#319933 Could be a generic C/C++ editor problem or something in the Text framework or SWT. There is also bug 319834 opened about Java editors though that doesn't really have a lot of information or context. Ricardo, are you still experiencing this problem? how to reproduce this bug in Oxygen:
Step 1: new c hello world project ,main source code is like :
#include <stdio.h>
#include <stdlib.h>
int main(void) {
puts("!!!Hello World!!!"); /* prints !!!Hello World!!! */
return EXIT_SUCCESS;
}
//END FILE
ctrl + click willl work on include ,and puts
Step 2: add some comment like // * a, ctrl + click stop work.
#include <stdio.h>
#include <stdlib.h>
// * a,
int main(void) {
puts("!!!Hello World!!!"); /* prints !!!Hello World!!! */
return EXIT_SUCCESS;
}
//END FILE
Notice: any comment pattern like "* word," will stop ctrl+click .
pattern is: <one star char><one blank char><at least one alpha char><one comma char>
my environment: Oxygen x32 x64 both have same problem, BUT neon is OK
(In reply to w x from comment #4) > Notice: any comment pattern like "* word," will stop ctrl+click . It sounds like you're running into bug 517610. Please try the workaround described in that bug. |