diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-02-27 09:58:05 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-02-27 09:58:05 -0800 |
commit | 46ef1adb08d7d7cc65e28b61b2fe8ce53015270f (patch) | |
tree | 14405b8497e95eadde841dd086b1a2896da79309 | |
parent | 2546d91214681f0d98670a29bd9971793665f252 (diff) | |
download | teliva-46ef1adb08d7d7cc65e28b61b2fe8ce53015270f.tar.gz |
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.
-rw-r--r-- | zet.tlv | 36 |
1 files 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'}, |