{
  "title": "Windows keys",
  "rules": [{
    "description": "home/end except for iterm2/vim/outlook",
    "manipulators": [{
        "type": "basic",
        "from": {
          "key_code": "end"
        },
        "to": [{
          "key_code": "e",
          "modifiers": [
            "control"
          ]
        }],
        "conditions": [{
          "type": "frontmost_application_unless",
          "bundle_identifiers": [
            "^org\\.vim\\.",
            "^com.googlecode.iterm2",
            "^com.microsoft.*"
          ]
        }]
      },
      {
        "type": "basic",
        "from": {
          "key_code": "home"
        },
        "to": [{
          "key_code": "a",
          "modifiers": [
            "control"
          ]
        }],
        "conditions": [{
          "type": "frontmost_application_unless",
          "bundle_identifiers": [
            "^org\\.vim\\.",
            "^com.googlecode.iterm2",
            "^com.microsoft.*"
          ]
        }]
      },
      {
        "type": "basic",
        "from": {
          "key_code": "end",
          "modifiers": {
            "mandatory": [
              "shift"
            ]
          }
        },
        "to": [{
          "key_code": "right_arrow",
          "modifiers": [
            "command",
            "shift"
          ]
        }],
        "conditions": [{
          "type": "frontmost_application_unless",
          "bundle_identifiers": [
            "^org\\.vim\\.",
            "^com.googlecode.iterm2",
            "^com.microsoft.*"
          ]
        }]
      },
      {
        "type": "basic",
        "from": {
          "key_code": "home",
          "modifiers": {
            "mandatory": [
              "shift"
            ]
          }
        },
        "to": [{
          "key_code": "left_arrow",
          "modifiers": [
            "command",
            "shift"
          ]
        }],
        "conditions": [{
          "type": "frontmost_application_unless",
          "bundle_identifiers": [
            "^org\\.vim\\.",
            "^com.googlecode.iterm2",
            "^com.microsoft.*"
          ]
        }]
      }
    ]
  }]
}