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 251551 - IDE doesn't display keywords from second completion list
Summary: IDE doesn't display keywords from second completion list
Status: RESOLVED FIXED
Alias: None
Product: cnd
Classification: Unclassified
Component: Code Completion (show other bugs)
Version: 8.1
Hardware: PC Solaris
: P3 normal (vote)
Assignee: Alexander Simon
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-04-01 09:07 UTC by soldatov
Modified: 2015-04-02 03:21 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 soldatov 2015-04-01 09:07:42 UTC
C++ code:
============================================
int bar() {
    
}

int main(int argc, char** argv) {

    return 0;
}

============================================

1st scenario:
- type 'ba' inside main() and press Ctrl+space
==> I see 'bar()' in code completion list
- type 'fl' and press Ctrl+space
==> "No suggestions" message appears

2nd scenario:
- press Ctrl+space in empty line inside main()
==> I don't see bar() or float
- type 'b'
==> I see bar() in completion list
- press Ctrl+space in empty line inside main()
- type 'fl'
==> "No suggestions" message appears
Comment 1 Alexander Simon 2015-04-01 10:59:47 UTC
fixed, change set:
http://hg.netbeans.org/cnd-main/rev/2eb164f71439
Comment 2 Quality Engineering 2015-04-02 03:21:52 UTC
Integrated into 'main-silver', will be available in build *201504020001* on http://bits.netbeans.org/dev/nightly/ (upload may still be in progress)

Changeset: http://hg.netbeans.org/main-silver/rev/2eb164f71439
User: Alexander Simon <alexvsimon@netbeans.org>
Log: fixed Bug #251551 - IDE doesn't display keywords from second completion list
and Bug #251553 IDE displays keywords in Code Completion list after . and ->