From 9ea11ac0f2c6604d66ff47e4c4d3b5da50a48813 Mon Sep 17 00:00:00 2001 From: buffet Date: Fri, 6 Jan 2023 17:45:36 +0100 Subject: [PATCH] fix(bash): fix fg bind --- programs/bash.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/programs/bash.nix b/programs/bash.nix index 337d845..acdf425 100644 --- a/programs/bash.nix +++ b/programs/bash.nix @@ -37,6 +37,9 @@ in { esac } PROMPT_COMMAND="__prompt" + + bind '"\C-o": "fg\n"' + bind '"\e\C-m": "\C-e | nvim\C-m"' ''; }; };