From 46ef1adb08d7d7cc65e28b61b2fe8ce53015270f Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 27 Feb 2022 09:58:05 -0800 Subject: [PATCH] zet.tlv: hotkeys are not alternatives In any case, I want the convention to be '|' for alternation. '/' is more likely to be a real hotkey. --- zet.tlv | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/zet.tlv b/zet.tlv index 78ee02b..73c0893 100644 --- a/zet.tlv +++ b/zet.tlv @@ -884,7 +884,7 @@ >menu = { > {'j', 'child'}, > {'k', 'parent'}, - > {'l/h', 'next/prev sib'}, + > {'l,h', 'next/prev sib'}, > {'e', 'edit'}, >} - __teliva_timestamp: @@ -950,9 +950,9 @@ >menu = { > {'j', 'child'}, > {'k', 'parent'}, - > {'l/h', 'next/prev sib'}, + > {'l,h', 'next/prev sib'}, > {'e', 'edit'}, - > {'a/b', 'insert sib'}, + > {'a,b', 'insert sib'}, > {'c', 'insert child'}, >} - __teliva_timestamp: @@ -1205,11 +1205,11 @@ >menu = { > {'j', 'child'}, > {'k', 'parent'}, - > {'l/h', 'next/prev sib'}, + > {'l,h', 'next/prev sib'}, > {'e', 'edit'}, - > {'a/b', 'insert sib'}, + > {'a,b', 'insert sib'}, > {'c', 'insert child'}, - > {'x/X/y/Y', 'resize'}, + > {'x,X,y,Y', 'resize'}, >} - __teliva_timestamp: >Thu Feb 10 06:57:51 2022 @@ -1219,10 +1219,10 @@ >-- To show app-specific hotkeys in the menu bar, add hotkey/command >-- arrays of strings to the menu array. >menu = { - > {'a/b/c', 'insert sib/child'}, + > {'a,b,c', 'insert sib/child'}, > {'e', 'edit'}, - > {'j/k/l/h', 'move to child/parent/sib'}, - > {'x/X/y/Y', 'resize'}, + > {'j,k,l,h', 'move to child/parent/sib'}, + > {'x,X,y,Y', 'resize'}, >} - __teliva_timestamp: >Thu Feb 10 07:00:46 2022 @@ -1473,10 +1473,10 @@ >-- To show app-specific hotkeys in the menu bar, add hotkey/command >-- arrays of strings to the menu array. >menu = { - > {'a/b/c', 'insert'}, + > {'a,b,c', 'insert'}, > {'e', 'edit'}, - > {'j/k/l/h', 'move'}, - > {'x/X/y/Y', 'resize'}, + > {'j,k,l,h', 'move'}, + > {'x,X,y,Y', 'resize'}, > {'s', 'stash'}, > {'t', 'link with stash'}, >} @@ -1915,10 +1915,10 @@ >-- To show app-specific hotkeys in the menu bar, add hotkey/command >-- arrays of strings to the menu array. >menu = { - > {'a/b/c', 'insert'}, + > {'a,b,c', 'insert'}, > {'e', 'edit'}, - > {'j/k/l/h', 'move'}, - > {'x/X/y/Y', 'resize'}, + > {'j,k,l,h', 'move'}, + > {'x,X,y,Y', 'resize'}, > {'s', 'stash'}, > {'t', 'link with stash'}, > {'z', 'scroll'}, @@ -3160,11 +3160,11 @@ >-- To show app-specific hotkeys in the menu bar, add hotkey/command >-- arrays of strings to the menu array. >menu = { - > {'a/b/c', 'insert'}, + > {'a,b,c', 'insert'}, > {'e', 'edit'}, - > {'j/k/l/h', 'move'}, + > {'j,k,l,h', 'move'}, > {'<', 'back'}, - > {'x/X/y/Y', 'resize'}, + > {'x,X,y,Y', 'resize'}, > {'s', 'stash'}, > {'t', 'link with stash'}, > {'z', 'scroll'},