How to sort text using vim

In the newer vim 7 there is a :sort command. This is much easier to remember and works cross platform than using the external command.

If you have an older version of vim on unix you can use an external sort command. Move the cursor to the first line to be sorted.
ma Mark the first line as mark a.
Move to the bottom of the text to be sorted.
!`asort The ! command tells Vim to run the text through UNIX command. The `a tell the editor that the text to be worked on starts at the current line and ends at mark a. The command that the text is to go through is sort.

Insanely Assembly

I just finished reading “Revolution in the Valley – The Insanely Great Story of How The Mac Was Made” by Andy Hertzfeld. I thought I knew many of the stories about the mac’s development, but there are so many more in this book. I never knew how much of the original OS was written in assembly language, I guess I always had assumed it was written in C or Pascal. 128k of memory is so incredibly small, even in those days.

%d bloggers like this: