blob: 89ad089a550c8763129a2f5e3210b3fa29c844b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!perl
# vim: set ft=perl:
use Bugzilla;
use Bugzilla::Constants;
Bugzilla->usage_mode(USAGE_MODE_CMDLINE);
Bugzilla->extensions;
use DDP return_value => 'void', colored => 1;
my @plugins = qw(
Colors
Timing
Completion
CompletionDriver::INC
CompletionDriver::LexEnv
CompletionDriver::Keywords
CompletionDriver::Methods
History
LexEnv
DDS
Packages
Commands
MultiLine::PPI
ReadLineHistory::WithoutExpansion
Peek
);
$_REPL->load_plugin($_) for @plugins;
|