Colin Kiegel

Results 22 issues of Colin Kiegel

When used with `sudo` it works. Other cargo plugins install without sudo. I can't see why sudo should be necessary. Without sudo I get: ``` $ cargo install cargo-open --verbose...

``` $ cargo install cargo-extras --force Updating registry `https://github.com/rust-lang/crates.io-index` error: failed to compile `cargo-extras v0.3.0`, intermediate artifacts can be found at `/tmp/cargo-install.4p2E2huohmAP` Caused by: native library `openssl` is being linked...

I suggest to include https://github.com/nabijaczleweli/cargo-update in cargo-extras. I think it's filling an important gap in todays cargo ecosystem. :-) ``` $ cargo install-update --all Updating registry `https://github.com/rust-lang/crates.io-index` Package Installed Latest...

I had the very same issue with https://github.com/carols10cents/cargo-open/issues/12. Other cargo plugins install without sudo. I can't see why sudo should be necessary. Of course this is not a show-stopper at...

```rust #[derive(Builder)] struct Generic { #[builder(setter(skip))] //

bug
help wanted
P-medium

ANSI colours aren't available ... a) when the compiler output is piped, e.g. into an editor or IDE b) in some terminals without the support Much like the Rust compiler's...

help wanted

``` `...` ``` is often used for code fragments in markdown If you use this style inside a commit message on linux, it will be interpreted by the shell. While...

bug

atom-core defines this keybindings for 'f3' but none for 'f1' '.platform-win32 atom-text-editor, .platform-linux atom-text-editor': 'f3': 'find-and-replace:find-next' This pull requests makes the racer-keybinding work on win32 and linux by default.

find-definiton works fine in my projects even on std-library `use std::collections::HashMap;` - it jumps directly into my rust-source at /usr/local/src/rust/src/. However this is readonly - and I would like to...

It would be nice to implement display via direct access to the std::fmt::Formatter - as another option. This would allow additional logic inside the display logic without temporary buffers. Use...