Here are some recommended Win/95 Utilities:
- ACDSee 32 - Graphics viewer
- Lemmy vi - UNIX-style text editor
- Allaire HomeSite - HTML/Site editor
- Starfish Internet Utilities - Launchpad/Connection monitor
Tips and Tricks
- vi word wrap
Here is a quick way to do word wrapping in the vi editor. Create a macro using the
mapcommand as follows:Move the cursor to the beginning of the paragraph you want formatted. Use the commandmap K 070lBhxi^M^[Jrepeatedly to join all sentences of a paragraph together. Then useKto split them apart.Notes:
- To enter the
^M, precede with^V. Same for the^[(escape).- To function properly, have these set:
ai(autoindent)- You can change the length from
70to any value that best suits your needs.- Once tested, you can put this mapping in your
.exrcfile or as part of yourEXINITenvironment string.
©Don Abel, 1998