Ghislain Guiot
Ghislain Guiot
Is there any chance to have this fix in a `0.9.2` to be able to run it on Ventura?
What you (we) are looking for is `Ctrl+v`+`Ctrl+j`. It works pretty well from anywhere in the prompt! (it's the same behavior as a shell like bash or zsh). I didn't...
I can't reproduce your segfault. I'm on MacOS arm64 (M1) with the latest build (commit https://github.com/roc-lang/roc/commit/e32cd140a80d5589563753073408bc25ea529bb5), what is yours?
Is it linked with #2666?
Yes, I tried it before, but while this works ```rust rl.bind_sequence( KeyEvent(KeyCode::Char('s'), Modifiers::CTRL), EventHandler::Simple(Cmd::Newline), ); ``` This is handled by the default `Enter` behavior: ```rust rl.bind_sequence( KeyEvent(KeyCode::Enter, Modifiers::SHIFT), EventHandler::Simple(Cmd::Newline), );...
https://github.com/kkawakam/rustyline/issues/653
His response makes sens, do you think about an alternative?
I don't want to enter into a battle 😇, but I associate `Ctrl+s` with "save", is there a particular reason that I don't know for the `s` key? I would...
# Reproduction Code: ```coffee app "main" packages { pf: "./roc/examples/cli/cli-platform/main.roc" } imports [pf.Program, pf.Stdout, pf.Task] provides [main] to pf main = Task.attempt processTask \p -> when p is Ok s...
@blotto, thank you for your fork :) Just to know, does your new branch (group_friends) will be merged or is still usable?