App-Codit

 view release on metacpan or  search on metacpan

lib/App/Codit/ConfigVariables.pod  view on Meta::CPAN

=item B<components>

Specify a list of modules you want the version numbers displayed.
Opens a new tab.

=item B<email>

Who to contact

=item B<http>

The website that supports this application

=item B<license>

Specify your license. By default it is set to I<Same as Perl>.
Set it to I<undef> if you do not want it to show.

=item B<licensefile>

Specify a plain text file as your license file. It is displayed in a new
tab with a L<Tk::ROText> widget.

=item B<licenselink>

Works only if the I<license> key is defined. Specify the weblink to your license. By default it
is set to L<https://dev.perl.org/licenses/>.
Set it to I<undef> if you do not want it to show.

=item B<version>

Specify the version of your application. By default it is set to the
version numer of the main window widget. Set it to undef if you do not
want it to show.

=back

=item B<-appname> in L<Tk::AppWindow>

Set the name of your application.

If this option is not specified, the name of your application
will be set to the filename of your executable with the first
character in upper case.

=item B<-automenu> in L<Tk::AppWindow::Ext::MenuBar>

Default value 1.

Specifies if the menu items of all extensions should be loaded automatically.

=item B<-autotool> in L<Tk::AppWindow::Ext::ToolBar>

Default value 1.

Specifies if the toolbar items of all extensions should be loaded automatically.

=item B<-commands> in L<Tk::AppWindow>

Defines commands to be used in your application. It takes a paired list of
command names and callbacks as parameter.

 my $app = $k::AppWindw->new(
    -commands => [
       do_something1 => ['method', $obj],
       do_something2 => sub { return 1 },
    ],
 );

Only available at create time.

=item B<-compoundcolspace> in L<Tk::AppWindow::Ext::Art>

Default value 5. Used in the B<createCompound> method to
set horizontal spacing.

=item B<-configfolder> I<hookable> in L<Tk::AppWindow::Ext::ConfigFolder>

The default value depends on your operating system.

On Windows: $ENV{LOCALAPPDATA}/appname
Others: $ENV{HOME}/.local/share/appname

You can overwrite it at launch by setting a folder yourself.

=item B<-contentacpopsize> in L<App::Codit>

Specifies how many characters you type before an auto complete suggestion list pops up.

=item B<-contentacscansize> in L<App::Codit>

Specifies the minimum word length for an addition to the database.

=item B<-contentactivedelay> in L<App::Codit>

Specifies the delay in ms between the moment the user stops typing and the moment an
auto complete suggestion list pops up.

=item B<-contentautobrackets> in L<App::Codit>

Boolean. If set, Every time you type a (, {, {, ' or " it's counterpart will be placed
right after it and the insert cursor in between.

=item B<-contentautocomplete> in L<App::Codit>

Boolean. If set, auto complete is on.

=item B<-contentautoindent> in L<App::Codit>

Boolean. If set, auto indent is on.

=item B<-contentbackground> in L<App::Codit>

Background color of the Tk::CodeText widget.

=item B<-contentbgdspace> in L<App::Codit>

Background color of leading and trailing spaces when showspaces is on.

=item B<-contentbgdtab> in L<App::Codit>



( run in 2.839 seconds using v1.01-cache-2.11-cpan-354807fb38d )