Volodymyr Lisivka
Volodymyr Lisivka
LGPL license, unlike GPL, allows linking of LGPL libraries with closed source code, if the library itself remains to be open source.
In addition to that, kitty keyboard protocol will be nice to have: https://sw.kovidgoyal.net/kitty/keyboard-protocol.html
@sedwards2009 About 1, my guess. It's quite new, but long awaited feature.
To clarify, kitty keyboard protocol is based on fixterms protocol proposed above: > The new protocol has been implemented in master and will be in the next kitty release. The...
Xterm's modifyOtherKeys is supported by vim, Emacs, and iTerm2, mintty, at least. https://vimhelp.org/map.txt.html#modifyOtherKeys https://github.com/emacs-mirror/emacs/blob/d68f2b8681f8eeb6bbf1b4476a88f00b2962179e/lisp/term/xterm.el#L35 https://github.com/search?q=modifyOtherKeys&type=issues
> I think that few Linux users are even aware of the two clipboards. The ability to copy-paste text with one hand and just two presses is the main driver...
Use this version of MicroEmacs instead: http://www.jasspa.com/o_features.html
To detect type size at compile time this trick can be used: ```C int main() { int dummy; int a_type; switch (dummy) { case 4: case sizeof(a_type): break; } return...
If you will compile sample program using target compiler, then it will be tested with target ncurses config. ```rust TARGET_CC = Some("/opt/scel/17.2/sysroots/x86_64-scelsdk-linux/usr/bin/arm-scel-linux-gnueabi/arm-scel-linux-gnueabi-gcc") TARGET_CFLAGS = Some("--sysroot=/opt/scel/17.2/sysroots/armv7ahf-neon-scel-linux-gnueabi -mcpu=cortex-a9 -mfpu=neon -mfloat-abi=hard -marm") ```
I commented out `check_chtype_size(&ncurses_lib);` and examples compiled fine and works fine on armv7 linux (Yocto), except for unicode, but Cursive examples are unable to display pseudo-graphics characters, maybe because ncurses...