| Text-Editor-Vip documentation | Contained in the Text-Editor-Vip distribution. |
Text::Editor::Vip::Buffer::Constants - Editing engine constants
use Text::Editor::Vip::Buffer::Constants
Khemir Nadim ibn Hamouda CPAN ID: NKH mailto:nadim@khemir.net http:// no web site
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
| Text-Editor-Vip documentation | Contained in the Text-Editor-Vip distribution. |
package Text::Editor::Vip::Buffer::Constants; use strict; use warnings ; BEGIN { use Exporter (); use vars qw ($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); $VERSION = 0.01; @ISA = qw (Exporter); @EXPORT = qw (SMART_INDENTATION NO_SMART_INDENTATION); @EXPORT_OK = qw (); %EXPORT_TAGS = (); } #------------------------------------------------------------------------------- use constant SMART_INDENTATION => 1 ; use constant NO_SMART_INDENTATION => 0 ; #------------------------------------------------------------------------------- 1 ;