There is _still_ no other word processor I'm aware of that can properly convert to title case. Not to mention Reveal Codes. I... might actually use this, not just play with it.
I was a computer labs staffer in the early 90s, and for a lot of students our labs were their first exposure to word processors, and man, I hated supporting WordPerfect for DOS. Students couldn't figure out how to apply formatting correctly. Trying to change something's format, they would would reveal codes and delete half of a formatting code pair. I spent so much time explaining why half their paper was now in italics or bold.
> There is _still_ no other word processor I'm aware of that can properly convert to title case. Not to mention Reveal Codes. I... might actually use this, not just play with it.
Equation editor and outlines with 'move family' type functionality as well. Those are not exclusive features but interesting for a terminal application.
> That's not title case - you don't capitalize words such as a, the, of, etc. unless they are at the beginning of the title.
Exactly. Capitalizing every letter is the lazy, half-ass pseudo title case that I always have to correct. Unfortunately its becoming normalized because many major companies that should know better don't even bother to do it right.
You could also use the vim :%!python3 your_script.py (where your_script.py does the work to format the text) command that takes the text of the buffer as stdin to the script and replaces the buffer contents with stdout of the script. This can also be combined with visual mode linewise to only replace specific lines of the buffer (must work on entire lines selected).