Roland Fredenhagen

Results 192 issues of Roland Fredenhagen

**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Click the screen share button. 2. Select screen 3....

bug

It's an online markup editor akin to overleaf, but with its own custom syntax, a mix of latex and markdown. Not sure if this is the right place to ask...

new-addon

I could imagine using something like https://github.com/rktjmp/fwatch.nvim (the code is very short, so probably makes sense to just copy it instead of creating a dependency). This would ensure changes with...

Maybe I just missed something, but AFAICT there is no easy way to derive serde::Deserialize on a struct and without adding helper functions get a `chrono::NaiveDate` out the other side...

C-enhancement
A-serde

E.g., `derive(Collection)` does not error when someone (def not me) adds `collection(key)` to a field.

I just found https://github.com/dtolnay/linkme and thought that this might allow collections to register themselves at a schema instead of the other way round. (e.g. the derive macro could do this)...

My idea would be to allow something like: ```rs #[drive(Collection, Views)] #[collection(name="timer")] #[view(TimerIsRunning, name = "timer_by_running", condition = |document| document.contents.running)] // Creates a View that emits all Documents where running...

**Is your feature request related to a problem? Please describe.** When writing long messages, you cannot see the beginning. **Describe the solution you'd like** Wordwrap the input box, increasing its...

Use the correct escape sequence to make links clickable in compatible terminals: https://gist.github.com/egmontkob/eb114294efbcd5adb1944c9f3cb5feda

Idea is to have a mapping like `find_till_char` but that skips delimited groups. I.e. `he[l]lo(){ h; c;}; Something else` invoking `find_till_char_skip_groups ;` should end up with `he[llo(){ h; c;};] Something...

C-enhancement
A-command