From 9d851cebffd92ad3d2c69cc4df7a2c9368b78f73 Mon Sep 17 00:00:00 2001 From: Heitor Augusto Date: Thu, 17 Oct 2024 15:08:12 -0300 Subject: [PATCH] fix(shortcuts): remove `\t` from start of multiple key shortcuts (#388) --- modules/shortcuts.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/shortcuts.nix b/modules/shortcuts.nix index 997d0fb1..00feb53d 100644 --- a/modules/shortcuts.nix +++ b/modules/shortcuts.nix @@ -30,7 +30,7 @@ let if ((builtins.length keys) == 1) then (escape (builtins.head keys)) else - "\t" + (lib.concatStringsSep "\t" (map escape keys)) + builtins.concatStringsSep "\t" (map escape keys) ); in (