Skip to content

Instantly share code, notes, and snippets.

@han-minhee
Created October 8, 2025 11:16
Show Gist options
  • Select an option

  • Save han-minhee/62f4096722bad2c96a2b6238b87e7ffb to your computer and use it in GitHub Desktop.

Select an option

Save han-minhee/62f4096722bad2c96a2b6238b87e7ffb to your computer and use it in GitHub Desktop.
a Karabiner-Elements rule to use Cmd + Arrow keys to go back and forward in Finder (Windows-like)
{
"description": "Use Cmd + Arrow keys to go Back and Forward in Finder (Windows-like)",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.apple\\.finder"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "left_arrow",
"modifiers": {
"mandatory": ["command"],
"optional": ["any"]
}
},
"to": [
{
"key_code": "open_bracket",
"modifiers": ["command"]
}
],
"type": "basic"
},
{
"conditions": [
{
"bundle_identifiers": [
"^com\\.apple\\.finder"
],
"type": "frontmost_application_if"
}
],
"from": {
"key_code": "right_arrow",
"modifiers": {
"mandatory": ["command"],
"optional": ["any"]
}
},
"to": [
{
"key_code": "close_bracket",
"modifiers": ["command"]
}
],
"type": "basic"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment