bob-tee opened a new issue, #5552:
URL: https://github.com/apache/netbeans/issues/5552

   ### Description
   
   It would be very nice if the Netbeans output window supported ANSI text 
colours. For example, the below would print red text:
   
   ```java
       public static void main(String[] args) {
           String ANSI_RESET = "\u001B[0m";
           String ANSI_RED = "\u001B[31m";
   
           System.out.println(ANSI_RED + "This text should be red!" + 
ANSI_RESET);
       }
   ````
   
   The system terminal and also the Netbeans terminal both display red text for 
the above example.
   
   Mailing list thread for reference: 
https://lists.apache.org/thread/1m4zzjpp2xj0vxlzx925mkfqr924s9l4
   
   ### Use case/motivation
   
   The text colour can be very useful especially when there is a lot of output. 
For consistency with the terminal it would be great if the output window 
handled the ANSI text colours.
   
   ### Related issues
   
   _No response_
   
   ### Are you willing to submit a pull request?
   
   No
   
   ### Code of Conduct
   
   Yes


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to