diff --git a/src/lib/assets/keymaps/chara-chorder.yml b/src/lib/assets/keymaps/chara-chorder.yml index a9ccbf47..fc4bfa35 100644 --- a/src/lib/assets/keymaps/chara-chorder.yml +++ b/src/lib/assets/keymaps/chara-chorder.yml @@ -2,7 +2,8 @@ name: CharaChorder description: CharaChorder specific actions actions: 0: - id: "No Action" + id: "NO_ACTION" + display: "No Action" 528: id: "RESTART" title: Restart Device @@ -60,6 +61,7 @@ actions: 544: variantOf: 36 id: "SPACERIGHT" + display: " " title: Right Spacebar (eg CC Lite) icon: space_bar variant: right diff --git a/src/lib/assets/random-tips/en.json b/src/lib/assets/random-tips/en.json index e55e3c51..816e028a 100644 --- a/src/lib/assets/random-tips/en.json +++ b/src/lib/assets/random-tips/en.json @@ -32,5 +32,7 @@ "You can use Nexus to track words you might want to add to your chord library", "The CC1 default layout was 80% science, 20% art", "There is little to no reason to use hjkl in VIM on a CC1 since the arrows keys are so close already", - "The device manager automatically creates a backup for you when you reboot your device into the bootloader" + "The device manager automatically creates a backup for you when you reboot your device into the bootloader", + "You can use \"compound\", \"macro\", \"suffix\" and \"cursor warp\" in the chord search to find specific types of chords", + "You can search for chord inputs by using a leading \"+\", for example \"+a +DUP\" will show all chords with inputs that contain both a and DUP" ] diff --git a/src/lib/components/Action.svelte b/src/lib/components/Action.svelte index 96351740..df4d6382 100644 --- a/src/lib/components/Action.svelte +++ b/src/lib/components/Action.svelte @@ -15,7 +15,8 @@ $: dynamicMapping = info.keyCode && $osLayout.get(info.keyCode); $: tooltip = - (info.title ?? info.id ?? `0x${info.code.toString(16)}`) + + `<${info.id ?? `0x${info.code.toString(16)}`}> ` + + (info.title ?? "") + (info.variant === "left" ? " (left)" : info.variant === "right" diff --git a/src/routes/config/chords/+page.svelte b/src/routes/config/chords/+page.svelte index 976d99c7..ef1d6b14 100644 --- a/src/routes/config/chords/+page.svelte +++ b/src/routes/config/chords/+page.svelte @@ -1,5 +1,5 @@