##
## Clicking links/gizmos:
##
#
# These commands require the mouseless browsing extension.
#
# Plug-in configuration:
#
# General->not execute automatically without pressing enter
# ID-types->all modifiers = ctrl+alt
# Keys->blur active element = ctrl+DIVIDE (press control num pad slash)
#
# Also, remove Dragon's use of DIVIDE
#
Blur() := {ctrl+NumKey/};
Toggle() := {NumKey.};
D(n) := When($n,{alt+ctrl+$n});
show numbers = Blur() Toggle();
refresh numbers = Blur() Toggle() Toggle();
blur me = Blur();
<pick> 0..9 [0..9 [0..9 [0..9]]] = Blur() D($2) D($3) D($4) D($5) $1;
<pick> := ( pick = {shift}{enter}
| drop pick = {shift}{enter}{alt+down}
| go pick = {shift}
| push pick = {shift}{ctrl+enter} # stay but open new tab w/ link
| tab pick = {shift}{ctrl+shift+enter}
| window pick = {shift}{shift+enter}
| menu pick = {shift}{shift+f10}
| save pick = {shift}{shift+f10} Wait(100) k
| copy pick = {shift}{shift+f10} Wait(100) a # copy URL of link
);
#
# These commands use the built-in quick find link:
#
link <_anything> = Blur() "'$1" {enter};
new link <_anything> = Blur() "'$1" {ctrl+enter};
window link <_anything> = Blur() "'$1" {shift+enter};