Skip to content
Tech News
← Back to articles

The Traditional Vi

read original more articles
Why This Matters

The re-release of the traditional vi editor as open source marks a significant milestone for the Unix community, ensuring continued access to a foundational text editing tool while enabling further development and internationalization. This move enhances the tool's relevance for modern users and preserves its legacy in the evolving tech landscape.

Key Takeaways

The Traditional Vi

Source Code for Modern Unix Systems

The vi editor is one of the most common text editors on Unix. It was developed starting around 1976 by Bill Joy at UCB, who was tired of the ed editor. But since he used ed as a code base, access to the original sources has required a commercial Unix Source Code License for more than twenty years. In January 2002, Caldera was so kind to remove usage restrictions to the Ancient Unix Code by a BSD-style license (see the announcement at Slashdot) and thus vi is now finally free.

Compared to most of its many clones, the traditional vi is a rather small program (the binary size is approximately 160 kBytes on i386) just with its extremely powerful editing interface, but lacking fancy features like multiple undo, multiple screens, or syntax highlighting.

This port of vi has generally preserved the original style, terminal control, and feature set. It adds support for international character sets, including multibyte encodings such as UTF-8, and some minor enhancements that were not present in BSD vi 3.7, but had been included in later vi versions for System V or in POSIX.2.

Download the source code

Release 050325 (current)

New releases of this project are announced on freshmeat.net. You can use their subscription service to get an email when a new version is available.

All releases

Browse the CVS repository

... continue reading