X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/f7debc650090d344b01da353f44a49dcf029303a..26a71f36c68773b18095911e99be7294cbd66f39:/altgr.eng.inc.pl diff --git a/altgr.eng.inc.pl b/altgr.eng.inc.pl index 7c06938..69430f6 100644 --- a/altgr.eng.inc.pl +++ b/altgr.eng.inc.pl @@ -1,26 +1,27 @@ use utf8; -my @usintrows = ( - [ 'a' .. 'z'], - [qw(Á B ¢ Ð É F G H Í J Œ Ø µ Ñ Ó Ö Ä ® § Þ Ú V Å X Ü Æ)], - [qw(á b © ð é f g h í j œ ø µ ñ ó ö ä ® ß þ ú v å x ü æ)], - [qw(Å ı Ç ð ´ ̉ ˝ ̣ ˆ ½  Þ ¾ ˜ Ø ∏ Œ ‰ / ˇ ¨ ◊ „ ˛ ¼ ¸)], - [qw(å ∫ ç ∂ ́ ƒ © ˙ ̂ ∆ ° ¬ µ ̃ ø π œ ® ß † ̈ √ ∑ ≈ ¥ Ω)], -); -our @rows = ( - map { - my $c = $_; - [ map { $usintrows[$_]->[$c] } 0 .. 2 ] - } 0 .. $#{ $usintrows[0] } +use strict; +use warnings; +my @az = ('A'..'Z', 'a'..'z'); +my @letters = qw( + Á B ¢ Ð É F G H Í J Œ Ø µ Ñ Ó Ö Ä ® § Þ Ú V Å X Ü Æ + á b © ð é f g h í j œ ø µ ñ ó ö ä ® ß þ ú v å x ü æ ); +our %rows = map { + $az[$_] => $letters[$_] +} 0 .. $#az; +{ %{ do 'keyboard.eng.inc.pl' }, title => 'altgr', version => '1.2', - intro => 'Special characters returned with the AltGr modifier -for the Windows US international layout.', + intro => join("\n", + 'Special characters returned with the AltGr modifier', + 'for the Windows US international layout.', + 'Similar to Apple options.', + ), description => [ "Windows US international keyboard layout table", "with the AltGr modifier key.", ], + moderows => '12-', }