schmonz.com is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.

This server runs the snac software and there is no automatic sign-up process.

Search results for tag #LeSS

[?]JdeBP » 🌐
@JdeBP@tty0.social

[?]Simon Tatham » 🌐
@simontatham@hachyderm.io

A thing I've only just realised about :

When you press '/' to search forward, or '?' to search backward, and enter a regex, two changes of state occur:

1. The regex is remembered, so that 'n' or 'N' will search for the same thing again.
2. The direction is remembered, so that 'n' searches in the same direction again, and 'N' searches in the opposite direction.

I've only just noticed that #2 happens at the instant of pressing / or ?, not at the instant of pressing Return. Because it takes effect even if you change your mind and cancel the attempt to input a new search regex:

• enter "?foo", which searches backward for /foo/
• press 'n', which searches backward for /foo/ again
• press '/', which prompts for a forward-search string
• press Backspace, which cancels that prompt
• now pressing 'n' searches *forward* for /foo/

I think this must be why I sometimes get confused about which direction I'm searching in. But also, wow, it's taken me _decades_ to notice. I think it must be because when I start and then cancel a prompt like that, I don't consciously remember doing it at all – I expected so strongly that it would be a no-op that I forget it immediately!