Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
desc: wresting ? 'Exit wresting mode' : 'Enter wresting mode',
wrc: 'Predictable',
});
+ add_uo(null, {
+ def_key: 'h',
+ kind: 'ClientExtra',
+ opname: 'motion-hint-history',
+ desc: 'Recent history display',
+ wrc: 'Predictable',
+ });
var uo_keys = Object.keys(uo_map);
uo_keys.sort(function (ak,bk) {
let a = uo_map[ak]!;
recompute_keybindings();
}
+keyops_local['motion-hint-history'] = function (uo: UoRecord) {
+ movehist_len_i ++;
+ movehist_len_i %= movehist_lens.length;
+ movehist_revisible();
+}
+
keyops_local['pin' ] = function (uo) {
if (!lower_targets(uo)) return;
pin_unpin(uo, true);