Advertisement
fabgonber

como hacer un backslash con teclado eeuu y layout español

Apr 30th, 2024
743
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.89 KB | None | 0 0
  1. /*
  2.     si tienes un macbook de eeuu y utilizas layout en español se pierde el \ (backslash)
  3.     esta complex_modification de karabiner-elements crea un \ al presionar SHIFT_IZQIERDO+OPT_DERECHO+7
  4.     requieres instalar Karabiner-Elements (https://ke-complex-modifications.pqrs.org/)
  5. */
  6. {
  7.     "description": "left_shift + right_option + 7 => back_slash ",
  8.     "manipulators": [
  9.         {
  10.             "from": {
  11.                 "key_code": "7",
  12.                 "modifiers": {
  13.                     "mandatory": [
  14.                         "left_shift"
  15.                     ],
  16.                     "optional": [
  17.                         "any"
  18.                     ]
  19.                 }
  20.             },
  21.             "to": [
  22.                 {
  23.                     "key_code": "non_us_backslash",
  24.                     "modifiers": []
  25.                 }
  26.             ],
  27.             "type": "basic"
  28.         }
  29.     ]
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement