screen: keyboard page for screen(1) commands
authorMischa POSLAWSKY <perl@shiar.org>
Mon, 26 Mar 2012 14:38:13 +0000 (16:38 +0200)
committerMischa POSLAWSKY <perl@shiar.org>
Tue, 10 Apr 2012 01:03:24 +0000 (03:03 +0200)
Data already prepared in commit v1.2-19-g1441526bea (2009-04-22)
[screen: draft default control commands].

screen.plp [new file with mode: 0644]

diff --git a/screen.plp b/screen.plp
new file mode 100644 (file)
index 0000000..a99dc98
--- /dev/null
@@ -0,0 +1,63 @@
+<(common.inc.plp)><:
+
+Html({
+       title => 'screen cheat sheet',
+       version => 'v1.0',
+       description => [
+               "Interactive cheat sheet for the Screen terminal manager,",
+               "describing the function of each key.",
+       ],
+       keywords => [qw'
+               screen sheet cheat reference overview commands keyboard
+               terminal window manager
+       '],
+       charset => $sign{charset},
+       stylesheet => [qw'light dark circus mono red terse'],
+       keys => 1,
+});
+
+:>
+<h1>Screen cheat sheet</h1>
+
+<h2>normal mode (default)</h2>
+
+<ul id="rows">
+
+<:
+use Shiar_Sheet::Keyboard 2;
+my $info = do 'screen.inc.pl' or die $! // $@;
+my $keys = Shiar_Sheet::Keyboard->new($info);
+$keys->map($get{map}) or undef $get{map};
+$keys->print_rows($get{rows});
+:>
+</ul>
+
+<hr>
+
+<div class="help">
+       <div class="left">
+<:
+               $keys->print_legend('legend-types', [map { "g$_" } 0 .. 8]);
+:>
+       </div>
+
+       <div class="right">
+<:
+               $keys->print_legend('legend-options', [qw'arg']);
+:>
+
+               <ul class="legend legend-set">
+               <li>keyboard <strong>map</strong> is
+                       <:= $get{map} ? 'set to ' : '' :><em><:= $keys->{map} :></em>
+               <li><strong>ascii</strong> mode is
+                       <:= defined $sign{-ascii} && 'forced ' :><em><:=
+                               $sign{-ascii} ? 'on' : 'off' :></em>
+               <li><strong>keys</strong> are
+                       <em><:= $showkeys ? 'always shown' : 'hidden if unassigned' :></em><:=
+                               !defined $showkeys && ' by default' :>
+               <li>default <strong>style</strong> is
+                       <:= defined $get{style} && 'set to ' :><em><:= $style :></em>
+               </ul>
+       </div>
+</div>
+