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 271488 - Output Window needs Configurable Window Size for large output
Summary: Output Window needs Configurable Window Size for large output
Status: NEW
Alias: None
Product: cnd
Classification: Unclassified
Component: Project (show other bugs)
Version: 8.2
Hardware: PC Mac OS X
: P1 normal (vote)
Assignee: Alexander Simon
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2017-09-15 20:14 UTC by beans4lad
Modified: 2017-09-17 13:58 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description beans4lad 2017-09-15 20:14:17 UTC
I am having large output during my c++ code run and Everything in those output required review but as output window in small i can't really go up and review it.

I know its not really a required things for Java project but for c/C++ i think most of stuff printed out on output terminal and its good to have window size configurable from preferences.
Comment 1 soldatov 2017-09-15 20:34:44 UTC
Do you speak about "History Size" property (Options > Miscellaneous > Terminal > History Size)?
Comment 2 beans4lad 2017-09-15 21:21:35 UTC
This is about "Preferences > Miscellaneous  > output"
The window that always come when there build or clean & Build or Run or Debug!!
Comment 3 soldatov 2017-09-16 11:45:31 UTC
(In reply to beans4lad from comment #2)
> The window that always come when there build or clean & Build
It is true

> Run or Debug!!
By default in most cases C++ IDE uses "Internal Terminal" and it is "Preferences > Miscellaneous  > Terminal"

Therefore in this case:
#include <stdio.h>
#include <unistd.h>

int main()
{
   int x;
   for (x = 0; x < 7000; x++) {
      printf("Step %d\n", x);
   }
   sleep(1);
}

I see 5000 lines only. But "History Size" property will fix this problem and I will see all 7000 lines.