https://github.com/cmcaine/tridactyl -- Mirror of https://riot.im/app/#/room/#tridactyl:matrix.org
seturl [regex for gmail] superignore true
, which stops Tridactyl from loading in the page
export async function editor() {
const elem = DOM.getLastUsedInput()
const selector = DOM.getSelector(elem)
20dc1918
, which changes the fuse.js option threshold
option from its default of 0.6 to 0.3 . So to fix it, I think you can run set completionfuzziness 0.6
ctrl-, should do the trick :)
Not if the address bar is focused!
:set escapehatchsidebarhack false
for compatibility with TST then the escapehatch works less well
sessionstore-backups/recovery.jsonlz4
. I think that I've got most of what I need, but jq
is a real pain. And it seems that the file is written every N seconds or so, where N is larger than I'd like. It would be nice if there were a way to force the write on demand.
lz4jsoncat $FIREFOX_DIR/sessionstore-backups/recovery.jsonlz4 | jq -r '.windows[0].t abs | sort_by(.lastAccessed)[-1] | .entries[.index-1] | \"[[\" + (.url) + \"][\" + (.title) + \"]]\"' | tr -d '\n'
browser.sessionstore.interval
to 1000
, otherwise the information is written only once per 15 seconds.