Skip to content

Commit

Permalink
fix(shortcuts): remove \t from start of multiple key shortcuts (#388)
Browse files Browse the repository at this point in the history
  • Loading branch information
HeitorAugustoLN authored Oct 17, 2024
1 parent 508a077 commit 9d851ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/shortcuts.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
(
Expand Down

0 comments on commit 9d851ce

Please sign in to comment.