maxomatic458

Results 28 comments of maxomatic458

here is a full example: ```rs use std::collections::HashMap; use keyvalues_serde; use serde::{Serialize, Deserialize}; #[derive(Serialize, Deserialize)] struct Foo { #[serde(rename = "KnownField")] known_field: String, #[serde(rename = "KnownFieldTwo")] known_field_two: String, #[serde(flatten)] other:...

is there maybe an example on how to use this function? Im unable to call ``Capture::start`` because the ``IRandomAccessStream`` does not implement ``Send`` how would i get the stream in...

@ysthakur same seems to happen with prompt indicators as well ``$env.PROMPT_INDICATOR = "\nTEST"`` will do this ![grafik](https://github.com/nushell/reedline/assets/104733404/42546336-13cf-4e01-bba6-3512a90f0a88) ``$env.PROMPT_INDICATOR = " \nTEST"`` will do this ![grafik](https://github.com/nushell/reedline/assets/104733404/51dae87a-3f8c-4568-ac81-d115b1ce4cf2)

> Does this only happen for menu indicators or also prompt indicators? I see that 696 overwrote the prompt indicator with the menu indicator so it's really weird if menu...

> One thing that should be considered too is that it might be useful to have client dependant crafting recipes, (I can think of cases where teams etc get different...

could probably implemented via: https://docs.rs/crossterm/latest/crossterm/event/struct.MouseEvent.html

> Any reason not to use Alt+Tab instead of Ctrl+N for ide_completion_menu in the default config? ``Alt+Tab`` would not work great on windows (already a shortcut). i believe the other...

@fdncred isn't this the same as #707?

i think it might be this line here: https://github.com/nushell/reedline/blob/0698712701418a7212ebf75d5724d72eccc4b43f/src/menu/columnar_menu.rs#L305 we could probably add a check there and if it fails we just dont style (looks like that can fail with...

@fdncred https://github.com/nushell/reedline/pull/782 should fix this