Reaching RET to open a block is too far from the home row, very unpleasant. C-m (Control-M) is much better and supported by both vim and Emacs.
I will try to fix this
31–34 of 34 posts
Reaching RET to open a block is too far from the home row, very unpleasant. C-m (Control-M) is much better and supported by both vim and Emacs.
I will try to fix this
It is common in traditional roguelikes to support vi keys as an alternative to arrow keys. I use that all the time when playing Brogue. Have a great vi keys muscle memory now thanks to that, but I use Emacs and only rarely vi, so it's not doing me much good.
There will a button to toggle between vi or emacs motions inside the setting
For reference, here are the supported motions: case '0': return { type: 'ZERO' }; case '_': return { type: 'START_ROW' }; // --- SEARCH --- case '/': return { type: 'START_SEARCH' }; case 'n': return { type: 'NEXT_MATCH' }; case 'N': return { type: 'PREV_MATCH' }; // --- MOVEMENT (WASD Removed) --- case 'h': case 'ArrowLeft': return { type: 'MOVE_CURSOR', dx: -1, dy: 0 }; case 'j': case 'ArrowDown': return { type: 'M…