Text::Editor::Vip::Buffer::Constants - Editing engine constants


Text-Editor-Vip documentation Contained in the Text-Editor-Vip distribution.

Index


Code Index:

NAME

Top

Text::Editor::Vip::Buffer::Constants - Editing engine constants

SYNOPSIS

Top

  use Text::Editor::Vip::Buffer::Constants

DESCRIPTION

Top

USAGE

Top

BUGS

Top

AUTHOR

Top

	Khemir Nadim ibn Hamouda
	CPAN ID: NKH
	mailto:nadim@khemir.net
	http:// no web site

COPYRIGHT

Top


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 ;