X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/f22a9debc2c3c50828c31ff028057734a4aadea6..v1.3-1-gb9115db06d:/vi.plp diff --git a/vi.plp b/vi.plp index 67326cb..ba92e17 100644 --- a/vi.plp +++ b/vi.plp @@ -2,7 +2,7 @@ Html({ title => 'vi cheat sheet', - version => 'v1.2', + version => 'v1.3', description => [ "Interactive cheat sheet for vi text editors, notably Vim,", "describing each key in various modes.", @@ -30,8 +30,10 @@ Html({ <: -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}); :> @@ -41,37 +43,15 @@ $keys->print_rows($get{rows});
-
-
info -
Info command: shows/does something without altering anything. -
motion -
Moves the cursor, or defines the range for an operator (<:= $sign{motion} :>). -
positioning -
Other movement (jumps, window (re)positioning). -
command -
Direct action command. -
ins mode -
Enters Insert or Replace mode. -
mode -
Enters a different mode. -
vis mode -
Enters Visual or Select mode. -
key cmd -
Additional key commands (click for overview). -
+<: + $keys->print_legend('legend-types', [qw'ci pm po co mi mo mv me']); +:>
-
-
key<:= $sign{arg} :> -
Commands with a dot need a char argument afterwards. -
key<:= $sign{motion} :> -
Requires a motion afterwards, operates between cursor and destination. -
vim -
Not in original Vi (assessment incomplete). -
vim7 -
New in vim version 7.x. -
+<: + $keys->print_legend('legend-options', [qw'arg motion', 'ext vim6', 'ext new vim7']); +:>