overhaul keyboard module include syntax
[sheet.git] / vi.plp
diff --git a/vi.plp b/vi.plp
index 67326cb7fca7dd445ab5c68aec1b0fe34a3317e3..f5820f12910c43c2c23548e98477a06bce49a521 100644 (file)
--- 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({
 </li>
 
 <:
-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});
 :>