X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/02aff73f80ccbf7d050280af1114f0e663c6d4dd..bd1e1ef87447f7922a39414b3deb7d1b305fb3d4:/vimperator.plp diff --git a/vimperator.plp b/vimperator.plp index 55c635f..26d58f5 100644 --- a/vimperator.plp +++ b/vimperator.plp @@ -1,41 +1,22 @@ -<: -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); - -our $VERSION = 'v1.0'; - -$header{content_type} = "text/html; charset=$sign{charset}"; - -:> - +<(common.inc.plp)><: + +Html({ + title => 'vimperator cheat sheet', + version => 'v1.1', + description => [ + "Interactive cheat sheet for the Vimperator Firefox extension,", + "describing the function of each key.", + ], + keywords => [qw' + vimperator firefox vim iceweasel sheet cheat reference overview + commands keyboard browser + '], + charset => $sign{charset}, + stylesheet => [qw'light dark circus mono red terse'], + keys => 1, +}); - -vimperator cheat sheet - - - -<: - my %styles = map {$_ => $_} qw(dark circus mono red terse); - our $style = exists $get{style} && $styles{$get{style}} || 'light'; - printf(qq{\n}, - $_ eq $style ? 'stylesheet' : 'alternate stylesheet', "$_.css", $_ - ) for keys %styles; - - our $showkeys = exists $get{keys} && $get{keys} ne '0'; - print "\n" unless $showkeys; - print "\n" - if $showkeys and $get{keys} eq 'ghost'; :> - - - -

Vimperator cheat sheet

normal mode (default)

@@ -106,12 +87,3 @@ $keys->print_rows($get{rows}); - - -