Kristofer Berggren
Kristofer Berggren
I've done some research and found that it is not possible (well safe) to send raw terminal control codes from within an ncurses application (we can do it at startup/shutdown...
Hi, I never heard about custom Telegram servers before. Any idea how to get access to such a server to test it, in case this feature is implemented? Note though...
I've done a little research and I couldn't find any API in `tdlib` (the official Telegram client library, that `nchat` uses) for using custom server hosts. Based on this and...
Yeah, maybe I can clarify a bit - so `nchat` is a fairly small project < 10 kLOC and it's built upon other libraries providing the actual protocol support; `tdlib`...
Yeah, this has crossed my mind before too. Will take a look. Note to self: Check how official Telegram client selects color - `getColorForId`?
Do you have any example of terminal-based chat app that implements "per user color" with a nice UI? Would only the name have the special color, or both name and...
Cool, thanks 👍
Support for unique user colors in group chats has been added now. You can enable it for example by using the [Basic Color Theme](https://github.com/d99kris/nchat#basic-color-theme): ``` cp /usr/local/share/nchat/themes/basic-color/* ~/.nchat/ ``` More...
I'm a little hesitant towards in-app copy/paste/selection for nchat, as it makes code/ui more complex, and the terminal (generally) already provides such functionality. Note that one can use ctrl-u /...
> Adding support for other common terminal text navigation (jumping) shortcuts would probably make sense though. Will try take a look at that. With commit 0239998 improved support for text...