Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

padre::config(3pm) [debian man page]

Padre::Config(3pm)					User Contributed Perl Documentation					Padre::Config(3pm)

NAME
Padre::Config - Configuration subsystem for Padre SYNOPSIS
use Padre::Config; [...] if ( Padre::Config->main_statusbar ) { [...] } DESCRIPTION
This module not only stores the complete Padre configuration, it also holds the functions for loading and saving the configuration. The Padre configuration lives in two places: a user-editable text file usually called config.yml an SQLite database which shouldn't be edited by the user Generic usage Every setting is accessed by a mutator named after it, i.e. it can be used both as a getter and a setter depending on the number of arguments passed to it. Different types of settings Padre needs to store different settings. Those preferences are stored in different places depending on their impact. But "Padre::Config" allows one to access them with a unified API (a mutator). Only their declaration differs in the module. Here are the various types of settings that "Padre::Config" can manage: o User settings Those settings are general settings that relates to user preferences. They range from general user interface look & feel (whether to show the line numbers, etc.) to editor preferences (tab width, etc.) and other personal settings. Those settings are stored in a YAML file, and accessed with "Padre::Config::Human". o Host settings Those preferences are related to the host on which Padre is run. The principal example of those settings are window appearance. Those settings are stored in a DB file, and accessed with "Padre::Config::Host". o Project settings Those preferences are related to the project of the file you are currently editing. Examples of those settings are whether to use tabs or spaces, etc. Those settings are accessed with "Padre::Config::Project". ADDING CONFIGURATION OPTIONS
Add a "setting()" - call to the correct section of this file. The setting() call initially creates the option and defines some metadata like the type of the option, it's living place and the default value which should be used until the user configures a own value. COPYRIGHT &; LICENSE Copyright 2008-2012 The Padre development team as listed in Padre.pm. This program is free software; you can redistribute it and/or modify it under the same terms as Perl 5 itself. perl v5.14.2 2012-06-27 Padre::Config(3pm)

Check Out this Related Man Page

Padre::Plugin::PDL(3pm) 				User Contributed Perl Documentation				   Padre::Plugin::PDL(3pm)

NAME
Padre::Plugin::PDL - PDL support for Padre SYNOPSIS
cpan Padre::Plugin::PDL Then use it via Padre, The Perl IDE. DESCRIPTION
Once enabled, one will automatically get the following features: Context-sensitive help integration Press F2 to get the help for the current PDL keyword BUGS
Please report any bugs or feature requests to "bug-padre-plugin-pdl at rt.cpan.org", or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Padre-Plugin-PDL <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Padre-Plugin-PDL>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORT
You can find documentation for this module with the perldoc command. perldoc Padre::Plugin::PDL You can also look for information at: o RT: CPAN's request tracker http://rt.cpan.org/NoAuth/Bugs.html?Dist=Padre-Plugin-PDL <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Padre-Plugin-PDL> o AnnoCPAN: Annotated CPAN documentation http://annocpan.org/dist/Padre-Plugin-PDL <http://annocpan.org/dist/Padre-Plugin-PDL> o CPAN Ratings http://cpanratings.perl.org/d/Padre-Plugin-PDL <http://cpanratings.perl.org/d/Padre-Plugin-PDL> o Search CPAN http://search.cpan.org/dist/Padre-Plugin-PDL/ <http://search.cpan.org/dist/Padre-Plugin-PDL/> SEE ALSO
PDL, Padre AUTHORS
Ahmad M. Zawawi <ahmad.zawawi@gmail.com> COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Ahmad M. Zawawi This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself. perl v5.14.2 2012-03-15 Padre::Plugin::PDL(3pm)
Man Page