-
-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract OS keyboard layouts list to its own file
- Loading branch information
1 parent
88e1943
commit ffcfc24
Showing
2 changed files
with
65 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
export const osKeyboardLayouts = [ | ||
This comment has been minimized.
Sorry, something went wrong. |
||
'keymap_belgian', | ||
'keymap_bepo', | ||
'keymap_brazilian_abnt2', | ||
'keymap_canadian_multilingual', | ||
'keymap_colemak', | ||
'keymap_croatian', | ||
'keymap_czech', | ||
'keymap_danish', | ||
'keymap_dvorak_fr', | ||
'keymap_dvorak', | ||
'keymap_dvorak_programmer', | ||
'keymap_estonian', | ||
'keymap_finnish', | ||
'keymap_french_afnor', | ||
'keymap_french', | ||
'keymap_french_mac_iso', | ||
'keymap_german', | ||
'keymap_greek', | ||
'keymap_hebrew', | ||
'keymap_hungarian', | ||
'keymap_icelandic', | ||
'keymap_irish', | ||
'keymap_italian', | ||
'keymap_italian_mac_ansi', | ||
'keymap_italian_mac_iso', | ||
'keymap_japanese', | ||
'keymap_korean', | ||
'keymap_latvian', | ||
'keymap_lithuanian_azerty', | ||
'keymap_lithuanian_qwerty', | ||
'keymap_neo2', | ||
'keymap_norman', | ||
'keymap_norwegian', | ||
'keymap_polish', | ||
'keymap_portuguese', | ||
'keymap_portuguese_mac_iso', | ||
'keymap_romanian', | ||
'keymap_russian', | ||
'keymap_serbian', | ||
'keymap_serbian_latin', | ||
'keymap_slovak', | ||
'keymap_slovenian', | ||
'keymap_spanish_dvorak', | ||
'keymap_spanish', | ||
'keymap_swedish', | ||
'keymap_swedish_mac_ansi', | ||
'keymap_swedish_mac_iso', | ||
'keymap_swedish_pro_mac_ansi', | ||
'keymap_swedish_pro_mac_iso', | ||
'keymap_swiss_de', | ||
'keymap_swiss_fr', | ||
'keymap_turkish_f', | ||
'keymap_turkish_q', | ||
'keymap_uk', | ||
'keymap_ukrainian', | ||
'keymap_us_extended', | ||
'keymap_us_international', | ||
'keymap_us_international_linux', | ||
'keymap_us', | ||
'keymap_workman', | ||
'keymap_workman_zxcvm' | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
you can also use
export default [ ... ]
which will make importing a little bit easier.`import osKeyboardLayouts from 'osKeyboardLayouts';