Ben Van Sleen
Ben Van Sleen
Addressing: https://github.com/nushell/reedline/issues/499
@tamlok Yes, the keycode C-[ is equivalent to ESC.
@fdncred I believe the `config.nu` configuration is defined within the `nushell` crate. In `reedline`, this configuration is exposed by the `Vi` constructor. If this PR is approved, I will write...
Ah, I see what you mean. Currently, on the `reedline` side of things, the keys composing the sequence are configured by the (new) 3rd argument to `Vi::new`: ``` Vi::new(insert_mode_keybinds, normal_mode_keybinds,...