Skip to main content

Brf-Mode 1.19 Has Been Released

This week I released a new version of Brf-Mode, an Emacs minor-mode that implements various features from the legendary programmer's editor Brief. You can get the new version from MELPA.

New features are:
  • Changed Window Resize (F2) to work exactly like in Brief, where the user first picks an edge and then uses the cursor keys to move that edge. Before the change, Window Resize just moved the window edge 1 column or row in the chosen direction. This was definitely more "Emacs-style", but harder to use without resorting to the (repeat) command.
  • Added implementation of Brief's "Zoom Window Toggle" on M-F2.
  • Documentation update to reflect the new features and some fixes to existing text.
One of the things that prompted the new release was I found an old (very old) backup with the original Brief program on it. I was able to get it to run on the Mac using DOSBox, the cross-platform DOS game emulator. This is the first time for many years I've been able to use the real program rather than one of the many Brief clones/emulators (including my own) - very cool 😀


Brief V3.0 running on MacOS Catalina via DOSBox

Comments

Popular posts from this blog

My Work in new Top Trumps Birds of Prey Pack

The new Top Trumps "Birds of Prey" pack has my picture illustrating the Secretary Bird card 😀 Here's the original picture: From Flickr

On BBC Springwatch !

BBC Springwatch featured one of my Goldfinch pictures last night: Goldfinch on Springwatch Shame they spelt my name wrong though! See the original on Flickr.

Emacs and MacOS Catalina

Catalina introduced a lot of security changes and the most intrusive is probably all the popups asking to give permission for apps to access directories under Home, like Documents. Worse still, apps which weren't written to handle the new security measures might just fail silently with no clues for the user. A solution is to give apps like Emacs "Full Disk Access" under "Security & Privacy" in Preferences, to give unfettered access to your files and avoid all the popups and silent failures. Sounds good, but that doesn't actually work for Emacs because "Emacs" in the app bundle is actually a Ruby script which decides which flavour of Emacs executable to run. This never mattered before, but it does under Catalina because MacOS thinks the executable is /usr/bin/ruby . Conventional wisdom is therefore to give "Full Disk Access" to Ruby. While this does work, I've always been uncomfortable giving all Ruby scripts full access...