Provided by: padre_1.00+dfsg-1_all bug

NAME

       Padre::Config::Human - Padre configuration for personal preferences

DESCRIPTION

       This class implements the personal preferences of Padre's users. See Padre::Config for
       more information on the various types of preferences supported by Padre.

       All human settings are stored in a hash as top-level keys (no hierarchy). The hash is then
       dumped in config.yml, a YAML file in Padre's preferences directory (see Padre::Config).

METHODS

   create
           my $config = Padre::Config::Human->create;

       Create and return an empty user configuration. (Almost empty, since it will still store
       the configuration schema revision - see "version").

       No parameters.

   read
           my $config = Padre::Config::Human->read;

       Load & return the user configuration from the YAML file. Return "undef" in case of
       failure.

       No parameters.

   write
           $config->write;

       (Over-)write user configuration to the YAML file.

       No parameters.

   clone
           my $object = $config->clone;

       Creates a cloned copy of the configuration object.

   as_hash
           my $hash = $config->as_hash;

       Creates a cloned copy of the configuration object as a plain hash reference.

COPYRIGHT & LICENSE

       Copyright 2008-2013 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.