Vim Tips Wiki
Register
Advertisement

Previous TipNext Tip

Tip: #147 - How to write a plugin

Created: October 24, 2001 7:42 Complexity: advanced Author: Charles E. Campbell, Jr. Version: 6.0 Karma: 59/26 Imported from: Tip#147

This tip gives a skeleton for writing a plugin; Vim's help files have plenty

of details (:he plugin, :he write-plugin, :he plugin-details).


# ------------------------------------------------------------------------------

# Exit when your app has already been loaded (or "compatible" mode set)

if exists("loaded_YourAppName")

Comments

Advertisement