Timothee Cour

Results 437 comments of Timothee Cour

@smblott-github tmux solved this problem as follows, by starting the server in background mode automatically so users don't have to separately keep a tab open with a separate command `chromix-too-server`...

This doesn't work for me: cpp points to apple's version of clang that uses a different version of llvm. should I use {/path/to/correct/clang -E} instead of {cpp} ? that compiles...

yes, I mean `reload an individual file in a Sublime Text plugin` ; because it's useful in some cases when `Reload Current Package` isn't desirable as I mentioned in top...

@flyx after a painful reduction I've found the root causes: * https://github.com/nim-lang/Nim/issues/15974 * https://github.com/nim-lang/Nim/issues/15975

@flyx this snippet gives: NimYAML/yaml/serialization.nim(407, 18) Error: attempting to call undeclared routine: 'getGMTime' EDIT: looks like i was on master, not devel; why is the main branch called devel instead...

> Currently not working are ref values of any kind. The reason for this is that those values are being cast to pointer when loading, which is used for storing...

At least nimyaml should allow to deal with ref types that don't involve multiple references to the same object, that's a very common use case. For multiple references, I don't...

* @flyx after https://github.com/nim-lang/Nim/pull/15947 this now works! ```nim when true: import yaml type Person = ref object firstnamechar: char surname: string age: int32 proc `$`(a: Person): string = $a[] setTagUri(Person,...

can we re-open this issue until support at CT is reasonable (doesn't have to be complete for that)? your snippet doesn't work, but neither does the following that doesn't contain...

@flyx > Probably better test code is the one with nodes which actually uses anchors & aliases I've improved the nim PR and now cyclic data (nimYAML anchors) do work,...