Yvonne Kothmeier

Results 14 comments of Yvonne Kothmeier

BTW this fails for some libcs, e.g. `libc6_2.31-0ubuntu9.7_amd64` on https://github.com/niklasb/libc-database/blob/c7b6d38b7f6178d6ecf9c1b472b0af2ea48c5c09/download#L91 The reason is some weird directory layout in this version, where `$tmp/lib/*/*` also matches some directory. Maybe this should be...

Also, maybe this should unpack to `.debug` instead of `debug`, because then gdb will pick them up automatically (unless I'm doing something wrong) But this might be confusing as dotfiles...

Lists don't work as well, at least not the unordered ones. In contrast to the tag they don't show up at all.

This one was resolved by #204 I guess. I can't reproduce it anymore on the latest master

Seems like 0. is treated as an enumeration. If you write 1.0, then this would be formatted as: `1. 0` (note the space between the point and the zero)

Weirdly enough, replacing the `assert(x > 1)` with something trivial like `assert(x >= x)` still produces 2 as content. This does not make sense to me. Is the variable a...

States variables seem to be lazily evaluated: ``` #let x = 0 #let y = x #(x = 1) #y ``` produces 0, whereas: ``` #let x = state("x", 0)...

I don't understand why this works then (the outer location is passed to the inner function): ``` #let c = counter("foo") #let foo(b) = { locate(loc => { let x...

Just leaving my 2 cents here, as I have done some translation in godot before: Game Translation in Godot is handled via the `TranslationServer` object. You can add a translation...

I think you mean a comment for the entire file? Because in the README there is an example for comments for a class: ``` # This comment is for a...