X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/bc82153494759a00aa278b2039e240ca673957c6..f850d8bca38d6f025cd26b62b6e5504dd4d77ad1:/vim.plp?ds=sidebyside diff --git a/vim.plp b/vim.plp index 3ae41b1..62587c0 100644 --- a/vim.plp +++ b/vim.plp @@ -1,77 +1,29 @@ -<: -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 - -our $VERSION = '1.2'; - -our $ascii = 0; -if (exists $get{ascii}) { - $ascii = $get{ascii} ne '0'; # manual override -} elsif (defined $ENV{HTTP_ACCEPT_CHARSET}) { - $ascii = 1; - for (split q{,}, $ENV{HTTP_ACCEPT_CHARSET}) { - $ascii = 0, last if $_ eq '*' or m{utf-?8}i; - } -} - -my $charset = $ascii ? 'us-ascii' : 'utf-8'; -my $ctype = "text/html; charset=$charset"; -$header{content_type} = $ctype; +<(common.inc.plp)><: + our $VERSION = 'v1.2'; + + use Shiar_Sheet::KeySigns qw(%sign); # dependant on $get{ascii} + + $header{content_type} = "text/html; charset=$sign{charset}"; :> + vi cheat sheet - - +<:= stylesheet(qw'light dark circus mono red terse') :> <: - 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" + print "\n".'' + unless $showkeys; + print "\n".'' if $showkeys and $get{keys} eq 'ghost'; :> - - - - - + + +

vi/vim cheat sheet

@@ -81,30 +33,16 @@ function setmode(classname) {
  • <: -our %sign = ( - arg => $ascii ? '.' : '·', # described as 'dot' - motion => $ascii ? '|' : '↕', - alias => $ascii ? 'see: ' : '»', - up => $ascii ? 'up' : '▲', - right => $ascii ? 'right' : '▶', - down => $ascii ? 'down' : '▼', - left => $ascii ? 'left' : '◀', - sep => $ascii ? '*' : '•', - _ => exists $get{ascii} && !$ascii ? "\x{200b}" : '', - # use the correct ZWNJ only when unicode is forced on - # default to use unofficial html for best support -); - use Shiar_Sheet::Keyboard; my $keys = Shiar_Sheet::Keyboard->new({do 'vim.inc.pl'}); $keys->map($get{map}) or undef $get{map}; -$keys->print_rows($get{static}); +$keys->print_rows($get{rows}); :> @@ -138,9 +76,9 @@ $keys->print_rows($get{static});
    Commands with a dot need a char argument afterwards.
    key<:= $sign{motion} :>
    Requires a motion afterwards, operates between cursor and destination. -
    vim +
    vim
    Not in original Vi (assessment incomplete). -
    vim7 +
    vim7
    New in vim version 7.x. @@ -148,8 +86,8 @@ $keys->print_rows($get{static});
  • keyboard map is <:= $get{map} ? 'set to ' : '' :><:= $keys->{map} :>
  • ascii mode is - <:= exists $get{ascii} && 'forced ' :><:= - $ascii ? 'on' : 'off' :> + <:= defined $sign{-ascii} && 'forced ' :><:= + $sign{-ascii} ? 'on' : 'off' :>
  • keys are <:= $showkeys ? 'always shown' : 'hidden if unassigned' :><:= !exists $get{keys} && ' by default' :> @@ -160,15 +98,13 @@ $keys->print_rows($get{static});