clipse: fix keyBindings example syntax (#8058)

This commit is contained in:
fk29g 2025-10-26 21:36:37 +01:00 committed by GitHub
parent 2aaf924e82
commit 879e4d9060
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -78,26 +78,26 @@ in
example = lib.literalExpression ''
{
"choose": "enter",
"clearSelected": "S",
"down": "down",
"end": "end",
"filter": "/",
"home": "home",
"more": "?",
"nextPage": "right",
"prevPage": "left",
"preview": "t",
"quit": "q",
"remove": "x",
"selectDown": "ctrl+down",
"selectSingle": "s",
"selectUp": "ctrl+up",
"togglePin": "p",
"togglePinned": "tab",
"up": "up",
"yankFilter": "ctrl+s"
}
"choose" = "enter";
"clearSelected" = "S";
"down" = "down";
"end" = "end";
"filter" = "/";
"home" = "home";
"more" = "?";
"nextPage" = "right";
"prevPage" = "left";
"preview" = "t";
"quit" = "q";
"remove" = "x";
"selectDown" = "ctrl+down";
"selectSingle" = "s";
"selectUp" = "ctrl+up";
"togglePin" = "p";
"togglePinned" = "tab";
"up" = "up";
"yankFilter" = "ctrl+s";
};
'';
description = "Custom key bindings";