Skip to content

Instantly share code, notes, and snippets.

@erickpaquin
Created February 10, 2025 13:10
Show Gist options
  • Save erickpaquin/34cb56ed7fd495c1bb1be084cdba567b to your computer and use it in GitHub Desktop.
Save erickpaquin/34cb56ed7fd495c1bb1be084cdba567b to your computer and use it in GitHub Desktop.
Karabiner config to remap normal delete key on windows keyboard to delete files instead of using the usual cmd + backspace
{
"description": "Remap normal delete key to behave like cmd+backspace",
"manipulators": [
{
"conditions": [
{
"bundle_identifiers": [
"^com.apple.finder$"
],
"type": "frontmost_application_if"
}
],
"from": { "key_code": "delete_forward" },
"to": [
{
"key_code": "delete_or_backspace",
"modifiers": ["left_command"]
}
],
"type": "basic"
}
]
}
@erickpaquin
Copy link
Author

Doesn't affect forward deleting characters in terminal or text editor, just deletes files or folders from desktop or finder.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment