Results 42 comments of rdiez

I can confirm that "git config --global gui.usettk 0" has no effect on my computer either.

I tried the fix linked by MaxLap above, and it worked. This is the command I used: `gsettings set org.mate.SettingsDaemon.plugins.xrdb active false` That change works after loging off and on...

Thanks for the information. It is not easy to find this kind of details in the documentation of Tk or xrdb. I can imagine that a user may want to...

First of all, thanks for your help with the contribution. I'll try another similar, small one, and I think that will be it for the time being. The Internet is...

1) The README does not mention that "bin" directory in section "Obtaining a Copy". So I missed it. 2) The files under "bin" are outdated. Version 1.0.2 is not there....

Many thanks for your quick response. About point 5), I do not want my application to block the serial port under Windows for a long time. Normally, the user spends...

There is one thing I haven't quite understood yet in src/jtermios/windows/JTermiosImpl.java . Please keep in mind that I am struggling here, because I do not really known that much about...

For the record, OUTPUT_BUFFER_EMPTY is not enough. It does improve the situation quite a lot: instead of letting only the first byte through, waiting for this event lets the first...

I have investigated a little further: 1) Adding to the beginning of tcdrain() the same m_WritePending check as write() does shows some improvement. Instead of dropping most of the data...

Passing null there made the application crash on my system. I did not really investigate further, as I assumed that JNA is using IntByReference instead of int[] for a reason....