simple-keyboard-layouts
Version:
Layouts module for simple-keyboard
25 lines (24 loc) • 825 B
JavaScript
/**
* Layout: Spanish
* Source: Paco Alcantara (https://github.com/pacoalcantara)
* Based on: http://ascii-table.com/keyboard.php/171
* and http://ascii-table.com/keyboard.php/071-2
*/
export default {
layout: {
default: [
"\u007c 1 2 3 4 5 6 7 8 9 0 ' \u00bf {bksp}",
"{tab} q w e r t y u i o p \u0301 +",
"{lock} a s d f g h j k l \u00f1 \u007b \u007d {enter}",
"{shift} < z x c v b n m , . - {shift}",
".com @ {space}",
],
shift: [
'\u00b0 ! " # $ % & / ( ) = ? \u00a1 {bksp}',
"{tab} Q W E R T Y U I O P \u0308 *",
"{lock} A S D F G H J K L \u00d1 \u005b \u005d {enter}",
"{shift} > Z X C V B N M ; : _ {shift}",
".com @ {space}",
],
},
};