Re: C/C++ plug-in: no linefeed in output window

2023-05-21 Thread Tim de Vries
if it's in the terminal, it's in your processing of out/err. If it's in your display, thats your paint/scroll. tim On 21/05/2023 8:04 a.m., Geert Vancompernolle wrote: Just started today using the C/C++ plug-in.  Got it from NB8.2 since the plug-in has not been updated (yet?) for more recen

Integrating JavaDoc into Web Sites directly, Output Restructured Text or Markdown

2023-05-21 Thread Andreas Reichel
Greetings and compliments of the day. I have revived and extended the XMLDoclet: https://www.manticore-projects.com/XMLDoclet/index.html Github Repo: https://github.com/manticore-projects/xml-doclet It works with Java 11, 17 and 21 and writes JavaDoc to XML, Restructured Text (*.rst) and Markdown

C/C++ plug-in: no linefeed in output window

2023-05-21 Thread Geert Vancompernolle
Just started today using the C/C++ plug-in.  Got it from NB8.2 since the plug-in has not been updated (yet?) for more recent NB's. All is working fine except that the following commands:     retval = wiringPiI2CWriteReg8(fd, 0x00, 0x80);     printf("Writing IODIR_A = [0x%02X].\n", (unsigned in

Re: Console: ascii characters not shown correctly

2023-05-21 Thread Helmut Leininger
Hi, I did not follow the whole thread, but I could solve similar problems with outputr to stderr / stdout in Netbeans by adding these options in the project configuration / Run / VM Options:  -Dstdout.encoding=utf-8 -Dstderr.encoding=utf-8 Netbeans 17, Java 19 Regards Am 21.05.2023 um 15:4

Re: Console: ascii characters not shown correctly

2023-05-21 Thread Geert Vancompernolle
Sorry for my late reply, just back from a business trip. I looked into the referenced pages you gave, applied the System.setOut() method with UTF-8 as parameter for the PrintStream() method like so: System.setOut(new PrintStream(System.out, true, "UTF8")); but it doesn't help.  The only chang