Ömer Sinan Ağacan

Results 317 comments of Ömer Sinan Ağacan

> Implementing it in TUI (as we talked) will make it harder to get nick Why do you need to know about the nick to show notifications? You're right that...

Just landed the initial support. Two features missing: - [ ] Show notification mode in tabs. - [ ] Provide a way to set notification defaults (e.g. what notification mode...

What is not working with `/notify mentions`?

I think you're having the same problem described in my comment [here](https://github.com/osa1/tiny/issues/267#issuecomment-727568840). Could you check it please? I will update tiny to print a warning like "Desktop notifications are not...

We now print a warning when a user uses `/notify` but the build doesn't support desktop notifications.

It's not `CTRL-tab`, just `tab` should work.

I asked about this in tokio discord. - It turns out it's possible to catch panics in Rust: https://doc.rust-lang.org/std/panic/fn.catch_unwind.html - tokio uses this in https://github.com/tokio-rs/tokio/blob/f75e5a7ef4f7cf4f4dae967d351f0e13e51a5447/tokio/src/runtime/task/harness.rs#L89 to catch panics in tasks...

I'm considering just setting `panic=abort` in release builds. tiny should never panic anyway (it's a bug if it does), and when it panics `panic=abort` or `panic=unwind` should print the same...

Here's a much simpler idea: Run commands of servers that we're connecting to on startup. If we do this then `Client` doesn't need to change at all as it'll have...

Makes sense. There's also the question of when to run the commands, before or after starting the TUI. Doing it before is simple. We print a line and then run...