X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/23a77ad01b96149db5e07121c09481dd1c5d9b4a..v1.3-0-g2034c72e12:/vi.plp diff --git a/vi.plp b/vi.plp index 9ef4103..f5820f1 100644 --- a/vi.plp +++ b/vi.plp @@ -1,33 +1,21 @@ <(common.inc.plp)><: - our $VERSION = 'v1.2'; - use Shiar_Sheet::KeySigns qw(%sign); # dependant on $get{ascii} +Html({ + title => 'vi cheat sheet', + version => 'v1.3', + description => [ + "Interactive cheat sheet for vi text editors, notably Vim,", + "describing each key in various modes.", + ], + keywords => [qw' + vi vim nvi sheet cheat reference overview commands keyboard + '], + charset => $sign{charset}, + stylesheet => [qw'light dark circus mono red terse'], + keys => 1, +}); - $header{content_type} = "text/html; charset=$sign{charset}"; - -:> - - - - -vi cheat sheet - - -<:= stylesheet(qw'light dark circus mono red terse') :> - -<: - our $showkeys = exists $get{keys} && $get{keys} ne '0'; - print "\n".'' - unless $showkeys; - print "\n".'' - if $showkeys and $get{keys} eq 'ghost'; :> - - - - -

vi/vim cheat sheet

normal mode (default)

@@ -42,8 +30,10 @@ <: -use Shiar_Sheet::Keyboard; -my $keys = Shiar_Sheet::Keyboard->new({do 'vi.inc.pl'}); +use Shiar_Sheet::Keyboard 2; +my $info = do 'vi.eng.inc.pl' or die $@; +$info->{def} = do 'vi.inc.pl'; +my $keys = Shiar_Sheet::Keyboard->new($info); $keys->map($get{map}) or undef $get{map}; $keys->print_rows($get{rows}); :> @@ -93,21 +83,10 @@ $keys->print_rows($get{rows}); $sign{-ascii} ? 'on' : 'off' :>
  • keys are <:= $showkeys ? 'always shown' : 'hidden if unassigned' :><:= - !exists $get{keys} && ' by default' :> + !defined $showkeys && ' by default' :>
  • default style is <:= defined $get{style} && 'set to ' :><:= $style :> - - -