Skip to content

Commit 9d851ce

Browse files
fix(shortcuts): remove \t from start of multiple key shortcuts (#388)
1 parent 508a077 commit 9d851ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/shortcuts.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ let
3030
if ((builtins.length keys) == 1) then
3131
(escape (builtins.head keys))
3232
else
33-
"\t" + (lib.concatStringsSep "\t" (map escape keys))
33+
builtins.concatStringsSep "\t" (map escape keys)
3434
);
3535
in
3636
(

0 commit comments

Comments
 (0)