From 48eed0562a9416555105f2802e987ab0711cedbb Mon Sep 17 00:00:00 2001 From: extrawurst Date: Sat, 28 Jan 2023 14:44:36 +0100 Subject: [PATCH] additional documentation for stash_open (#1525) --- KEY_CONFIG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/KEY_CONFIG.md b/KEY_CONFIG.md index 9488a56e..c3772c1d 100644 --- a/KEY_CONFIG.md +++ b/KEY_CONFIG.md @@ -17,6 +17,8 @@ Create a `key_bindings.ron` file like this: move_up: Some(( code: Char('k'), modifiers: ( bits: 0,),)), move_down: Some(( code: Char('j'), modifiers: ( bits: 0,),)), + stash_open: Some(( code: Char('l'), modifiers: ( bits: 0,),)), + open_help: Some(( code: F(1), modifiers: ( bits: 0,),)), ) ```