Created
February 10, 2025 13:10
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Doesn't affect forward deleting characters in terminal or text editor, just deletes files or folders from desktop or finder.