Lynx style navigation for Chawan Wed, 29 Oct 2025 19:41:38 +0100 +-----------------------------------------------------------------+ I'm trying out Lynx style navigation arrow keys for for the Chawan browser. It's probably a faster method, while the default Chawan navigation remains with the HJKL keys. in ~/.config/chawan/config.toml [page] # Lynx style navigation arrow keys 'M-[A' = '() => pager.cursorPrevLink()' 'M-[B' = '() => pager.cursorNextLink()' 'M-[C' = '() => pager.nextBuffer()' 'M-[D' = '() => pager.prevBuffer()' ␌