Xavier Lambein

Results 12 comments of Xavier Lambein

I've tried recording a video to show the problem, but it's actually quite hard to realize what's happening when you're not the one scrolling yourself. Anyway, here's the recording I've...

Oops, yup, I forgot about that. I'm on Ubuntu 17.04 with Unity, but I already had the problem on 16.10.

The editor works fine on Firefox, but I have the same problem on Chrome. Atom, on the other hand, works well.

The `rust-src` component contains a `Cargo.lock` file (`$RUST_SRC_PATH/../Cargo.lock`) which could be used to retrieve the missing checksums. Furthermore, it contains the sources for `std`, along with a `Cargo.toml` specifying the...

I had a similar problem, where I wanted to parse a possibly empty string with escaped characters, and so I used something like: ```rust escaped(many0(none_of("\"\\")), '\\', one_of(r#"\"n"#)) ``` where I...

Not super familiar with the inner workings of JACK in general, but from looking at the doc it seems that transport is not the same thing as jackctl. Transport is...

I have the same error. It happens every time I run `ls`, but it doesn't seem to be an issue with other commands. I've tried out `cat`, `ps` & `git`.

> Would it be okay for you if I pushed to this PR to make these changes? Of course! :] I'm totally in line with all those changes.

This is a pretty cool idea, hadn't thought of it, but I can definitely see how it would be useful. In our codebase we avoid needing this by using associated...

I see, thanks for the explanation! I better understand the problem now. As you said, I'm not sure either if there's a better default. Perhaps it would be enough to...