X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/a401632a210413c3a4f0237c8fd8986bdf45934c..63bcd72677ebb3b0b2a3b59d7ce6d518b1928c77:/vimperator.plp diff --git a/vimperator.plp b/vimperator.plp index 19298d1..d939c9a 100644 --- a/vimperator.plp +++ b/vimperator.plp @@ -1,61 +1,36 @@ -<: -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 = '1.0'; - -$header{content_type} = "text/html; charset=$sign{charset}"; - -:> - - - -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; +<(common.inc.plp)><: + +Html({ + title => 'vimperator cheat sheet', + version => 'v1.2', + 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, +}); - 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,16 +81,3 @@ $keys->print_rows($get{static}); - - -