Support numpad enter
This commit is contained in:
parent
b224dd0cc0
commit
53fe43ac0f
|
@ -1,6 +1,14 @@
|
||||||
source ~/.config/nushell/init.nu
|
source ~/.config/nushell/init.nu
|
||||||
|
|
||||||
# Change default config
|
# Change default config
|
||||||
|
$env.config.keybindings = (echo $env.config.keybindings | append {
|
||||||
|
name: newline_or_run_command_2
|
||||||
|
modifier: CONTROL
|
||||||
|
keycode: char_j
|
||||||
|
mode: emacs
|
||||||
|
event: {send: enter}
|
||||||
|
})
|
||||||
|
|
||||||
$env.config.show_banner = false
|
$env.config.show_banner = false
|
||||||
$env.config.use_grid_icons = false
|
$env.config.use_grid_icons = false
|
||||||
$env.config.cursor_shape.emacs = block
|
$env.config.cursor_shape.emacs = block
|
||||||
|
|
Loading…
Reference in New Issue