Henry Percy
filed fromSheffield GB ; 53.22°N 1.28°W

Tech

Articles

0

No articles yet.

Slices

3

The new version of this site is live!

I have moved away from Astro in favour of statically generating the files myself using Go. I re-designed the site based on the idea of a field notebook, taking inspiration from this essay on imagining your site as a physical object or place.

; Sheffield ; permalink

An issue I've had switching to Aerospace is that typing # (on a mac) causes me to switch to workspace 3:

Toml.aerospace.toml
[mode.main.binding]
alt-3 = 'workspace 3'

A fix I came across was to define an empty binding mode. When switching to a new binding mode, all the previous bindings are disabled in favour of the new bindings, allowing me to type #.

To get this working I mapped Option + Backspace in the main and new mode to toggle between them:

Toml.aerospace.toml
[mode.main.binding]
alt-backspace = 'mode hash'
[mode.hash.binding]
alt-backspace = 'mode main'

I think this is currently the best solution but it would be nice to map the left and right modifier keys separately.

; London ; permalink