Skip to content

Commit

Permalink
add capital h & l
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRivasMD committed Jan 20, 2021
1 parent b2e3163 commit 148cce4
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions preview-vim.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,49 @@
}
]
},
{
"description": "map HL",
"manipulators": [{
"type": "basic",
"from": {
"key_code": "h",
"modifiers": {
"mandatory": [
"left_shift"
]
}
},
"to": [{
"key_code": "open_bracket",
"modifiers": [
"left_command"
]
}],
"conditions": [{
"type": "frontmost_application_if",
"bundle_identifiers": ["^com.apple.Preview$"]
}]
},
{
"type": "basic",
"from": {
"key_code": "l",
"modifiers": {
"mandatory": [
"left_shift"
]
}
},
"to": [{
"key_code": "close_bracket",
"modifiers": [
"left_command"
]
}],
"conditions": [{
"type": "frontmost_application_if",
"bundle_identifiers": ["^com.apple.Preview$"]
}]
}
]
},

0 comments on commit 148cce4

Please sign in to comment.