initial queries

This commit is contained in:
2025-09-04 17:02:38 +02:00
parent 8c37cb2fea
commit 274fa5edcc
2 changed files with 16 additions and 9 deletions

View File

@@ -17,6 +17,8 @@
# Horizontal navigation:
# - $KEYS_IN: Enter into selected item, down the hierarchy
# - $KEYS_OUT: Leave current item, up the hierarchy
# - $KEYS_N_IN: Enter into selected item, down the hierarchy (normal mode)
# - $KEYS_N_OUT: Leave current item, up the hierarchy (normal mode)
#
# Filtering:
#
@@ -43,6 +45,8 @@ KEYS_N_TOP="${KEYS_N_TOP:-"1"}"
# Horizontal navigation:
KEYS_IN="${KEYS_IN:-"ctrl-l"}"
KEYS_OUT="${KEYS_OUT:-"ctrl-h"}"
KEYS_N_IN="${KEYS_N_IN:-"l"}"
KEYS_N_OUT="${KEYS_N_OUT:-"h"}"
## Not yet characterized
KEYS_N_QUIT="${KEYS_N_QUIT:-"q"}"
@@ -70,8 +74,6 @@ KEYS_NI="$KEYS_HALFPAGE_DOWN,$KEYS_HALFPAGE_UP,$KEYS_BROWSE,$KEYS_OPEN,$KEYS_OUT
export KEYS_NI
# Keys in normal mode only
KEYS_N_OUT="${KEYS_N_OUT:-"h"}"
KEYS_N_IN="${KEYS_N_IN:-"l"}"
KEYS_N_INSERT="${KEYS_N_INSERT:-"a,i,/"}"
KEYS_N_TOGGLE_PLAY_PAUSE="${KEYS_N_TOGGLE_PLAY_PAUSE:-"space"}"
KEYS_N_PLAY_NEXT="${KEYS_N_PLAY_NEXT:-"right"}"