nethack: add break points
[sheet.git] / readline.plp
index b8a6022c6c19b80ec8514163409ab5eebd1e9b9b..0488d87ecd561ad427fdd03599d7b82034afd3d8 100644 (file)
@@ -1,51 +1,30 @@
-<:
-use utf8;
-use strict;
-use warnings;
-no  warnings 'qw';  # you know what you doing
-no  warnings 'uninitialized';  # save some useless checks for more legible code
-
-use Shiar_Sheet::KeySigns qw(%sign);  # dependant on $get{ascii}
-
-our $VERSION = 'v1.2';
-
-$header{content_type} = "text/html; charset=$sign{charset}";
-
-:><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
- "http://www.w3.org/TR/html4/loose.dtd">
-<html>
+<(common.inc.plp)><:
+
+Html({
+       title => 'readline cheat sheet',
+       version => 'v1.0',
+       description => [
+               "Reference sheet of default key bindings for GNU readline,",
+               "used for line-editing in most Unix software, notably Emacs and Bash.",
+       ],
+       keywords => [qw'
+               readline gnu bash emacs sheet cheat reference overview keyboard editing curses
+       '],
+       charset => $sign{charset},
+       stylesheet => [qw'light dark circus mono red terse'],
+       keys => 1,
+});
 
-<head>
-<title>readline cheat sheet</title>
-<meta http-equiv="content-type" content="<:= $header{content_type} :>">
-<link rel="stylesheet" type="text/css" media="all" href="base.css">
-<!--[if lte IE 6]><style> .help dl.legend dt {margin:0 0 1px} </style><![endif]-->
-<!--[if lte IE 7]><style> .help dl.legend dd {float:none} </style><![endif]--><:
-       my %styles = map {$_ => $_} qw(dark circus mono red terse);
-       our $style = exists $get{style} && $styles{$get{style}} || 'light';
-       printf(qq{\n<link rel="%s" type="text/css" media="all" href="%s" title="%s">},
-               $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "$_.css", $_
-       ) for keys %styles;
-
-       our $showkeys = exists $get{keys} && $get{keys} ne '0';
-       print "\n<style> .no {visibility:hidden} </style>" unless $showkeys;
-       print "\n<style> .no, .alias {opacity:.5} </style>"
-               if $showkeys and $get{keys} eq 'ghost';
 :>
-<script type="text/javascript" src="/keys.js"></script>
-
-<body id="readline">
-
 <h1>readline cheat sheet</h1>
 
-<h2>normal mode (default)</h2>
+<h2>default emacs mode</h2>
 
 <ul id="rows">
 
 <li class="row">
        <ul class="keys omni">
-       <li class="mo" onclick="setmode()"><b>Esc</b> normal mode
-               <!-- not as static anymore, but never bothered; just see ^[ -->
+       <li class="me" onclick="setmode()"><b>Esc</b> +
        </ul>
 </li>
 
@@ -53,7 +32,7 @@ $header{content_type} = "text/html; charset=$sign{charset}";
 use Shiar_Sheet::Keyboard;
 my $keys = Shiar_Sheet::Keyboard->new({do 'readline.inc.pl'});
 $keys->map($get{map}) or undef $get{map};
-$keys->print_rows($get{static} || '543');
+$keys->print_rows($get{rows} || '^x=213', [4,3,2]);
 :>
 </ul>
 
@@ -65,19 +44,17 @@ $keys->print_rows($get{static} || '543');
                <dt class="ci">info
                        <dd>Info command: shows/does something without altering anything.
                <dt class="pm">motion
-                       <dd>Moves the cursor, or defines the range for an operator (<:= $sign{motion} :>).
-               <dt class="po">
-                       <dd>
+                       <dd>Move the cursor.
                <dt class="co">history
-                       <dd>
+                       <dd>Replace contents involving kill ring, undo, or command history.
                <dt class="mi">change
-                       <dd>
+                       <dd>Alter current text (filtering or completion).
                <dt class="mo">delete
-                       <dd>
-               <dt class="mv">
-                       <dd>
+                       <dd>Remove text.
+               <dt class="mv">misc
+                       <dd>Miscellaneous commands.
                <dt class="me">mode
-                       <dd>
+                       <dd>Additional key functionality (click to view).
                </dl>
        </div>
 
@@ -85,12 +62,10 @@ $keys->print_rows($get{static} || '543');
                <dl class="legend legend-options">
                <dt>key<:= $sign{arg} :>
                        <dd>Commands with a dot need a char argument afterwards.
-               <dt>key<:= $sign{motion} :>
-                       <dd>Requires a motion afterwards, operates between cursor and destination.
-               <dt class="vim">vim
-                       <dd>Not in original Vi (assessment incomplete).
-               <dt class="vim7">vim7
-                       <dd>New in vim version 7.x.
+               <dt class="new">&gt;v2.0
+                       <dd>Unavailable before readline version 2.1 (1997).
+               <dt class="ext">bash
+                       <dd>Default assignment in Bash shells, but not common readline.
                </dl>
 
                <ul class="legend legend-set">
@@ -108,12 +83,3 @@ $keys->print_rows($get{static} || '543');
        </div>
 </div>
 
-<p class="footer">
-       <a href="/" rel="home">sheet.shiar.nl</a>/vim
-       <a href="git://git.shiar.nl/sheet" rel="vcs-git" title="Git repository"><:= $VERSION :></a>
-       created by <a href="http://shiar.nl/" rel="author">Shiar</a> <:= $sign{sep} :>
-       <a title="Licensed under the GNU Affero General Public License, version 3" rel="copyright"
-          href="http://www.fsf.org/licensing/licenses/agpl-3.0.html">AGPLv3</a>
-</p>
-
-</html>