Text::Editor::Vip::Buffer::Plugins::Case - Plugin to make selection upper or lower case.


Text-Editor-Vip documentation  | view source Contained in the Text-Editor-Vip distribution.

Index


MakeSelectionUpperCase

Makes the current selection upper case.

MakeSelectionLowerCase

Makes the current selection lower case.

NAME

Top

Text::Editor::Vip::Buffer::Plugins::Case - Plugin to make selection upper or lower case.

SYNOPSIS

Top

  use Text::Editor::Vip::Buffer ;

  my $buffer = new Text::Editor::Vip::Buffer() ;
  $buffer->LoadAndExpandWith('Text::Editor::Vip::Buffer::Plugins::Case') ;

  $buffer->Insert("this is upper case") ;
  $buffer->GetSelection()->Set(0, 8, 0, 13) ;
  $buffer->MakeSelectionUpperCase() ;

  is($buffer->GetText(), 'this is UPPER case', 'Upper casing selection') ;

DESCRIPTION

Top

Plugin to make selection upper or lower case

AUTHOR

Top

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

COPYRIGHT

Top


Text-Editor-Vip documentation  | view source Contained in the Text-Editor-Vip distribution.