From d9e21b23bdd47aabf13cd48ed867c5c453072a3a Mon Sep 17 00:00:00 2001 From: stitchy Date: Mon, 9 Dec 2024 15:42:35 -0800 Subject: [PATCH] foot: fix shift+space in neovim terminal lazygit Problem: In neovimg when using a terminal (like toggleterm) and trying to press shift+space in an curses type application like lazygit, it will print an escape sequence instead of printing the space key. This textbinding remaps it so it will now print space instead. Has minor implications for escape sequences and stuff. --- config/foot/foot.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/config/foot/foot.ini b/config/foot/foot.ini index 7f62971..6eca261 100644 --- a/config/foot/foot.ini +++ b/config/foot/foot.ini @@ -17,3 +17,4 @@ font=monospace:size=10 # Git Issue: https://codeberg.org/dnkl/foot/issues/1358 [text-bindings] \x0d = Control+Return Shift+Return Control+Shift+Return + \x20 = Shift+space