Nathan Ringo

Results 85 issues of Nathan Ringo

This'd make the ergonomics around (at a minimum) `PathBuf` a lot nicer; right now: ```rust #[derive(Debug, Fail)] pub enum Error { /// An error opening a source file. #[fail(display =...

not sure if this should be filed here or against nixpkgs, since it looks like the actual building is there, but it'd be nice if crates got a `.doc` output...

It'd be nice to have support for using `core`+`alloc` only, rather than full-blown `std`. Although if possible, it'd honestly be nicer to not require `alloc` (for `String`s) and instead return...

Closes #156. This also adds an environment variable, `HEXYL_COLOR_MODE`, so that the color mode can be set by the end user when hexyl is used in scripts. (If you'd rather...

#38 still left some use of 256-colors for gray; when using tmux on the Linux kernel console, this color gets quantitized to black, so addresses are unreadable https://github.com/sharkdp/hexyl/blob/master/src/lib.rs#L15-L16=

enhancement
good first issue

This should allow GCC to use more aggressive loop optimizations. **EDIT**: Per [this](https://gcc.gnu.org/projects/tree-ssa/vectorization.html#using), you might need to add `-msse`/`-msse2`, and possibly `-ffast-math` and/or `-fassociative-math` to GCC's flags.

https://github.com/Shougo/neocomplete.vim/issues/530 On a related note, maybe change the message to `IF YOU SEE THIS, REPORT A BUG IN NSF/GOCODE`?

Is it sound to make Window impl Send? Right now, I'm trying to make an ncurses-based UI that is a `futures::Sink`, but all useful `tokio` operations require `Sink: Send`.

I get the following: ``` warning: function is never used: `main`, #[warn(dead_code)] on by default --> src/bin/alt.rs:17:1 | 17 | fn main() { | ^ ``` This is wrong, correct?