Darren Schroeder

Results 2076 comments of Darren Schroeder

@rsteube Are you still wanting to move forward with this?

I think it's fine with the display member of the suggestion structure, but we don't want to have breaking changes either. @stormasm may have different suggestions.

I'll probably be ok with this PR once I can see it work and understand if there are bugs or not. I can't get the nushell PR that references this...

I think it's working as expected because you're telling wrap to put the list into a column named index which is the # column. This is what I get on...

> Edit: Hmmm, I still see this on latest main That's because you're allowing the table to be formatted with `table -e` in your display_hook of your config.nu. If you...

The data type is a closure, not a string. Maybe I'm not following what you're saying.

oh, i see what you mean. thanks. i can't remember how i wrote this but is there a way to look at the right hand side and send it to...

it's `to json` vs `into json` but anyway, when you do `to json` this is outputting a string. in order to do what you're talking about we'd probably have to...

@Bahex That's pretty creative. Thanks! I just can't get `open -r somefile.nu` to highlight. I'm not exactly sure why though.

I changed `open` to assign it. I should've mentioned that. changes in open.rs ```rust let content_type = path .extension() .map(|ext| ext.to_string_lossy().to_string()) .and_then(|ref s| detect_content_type(s)); ... fn detect_content_type(extension: &str) -> Option...