Hotkey fn+Backspace [CLOSED]

Questions, glitches, bugs and crashes
Locked
d0ublezer0
Posts: 102
Joined: Tue Jun 28, 2016 6:17 pm
Location: NN, Russia

Hotkey fn+Backspace [CLOSED]

Post by d0ublezer0 » Sat Sep 17, 2016 7:59 am

I wanted to change the "delete" action F8 to another key, but could not.
The new value "fn+Backspace"(as delete action for text in macOS) is cannot be assigned. I dont know, why.
This combination is more convenient for me, because it is easier to get there, not looking at the keyboard - no need to aim at the F8 key. Especially at low ambient light.

It is possible?

User avatar
deseven
Posts: 20
Joined: Thu Sep 08, 2016 1:56 pm
Location: Serbia
Contact:

Re: Hotkey fn+Backspace

Post by deseven » Sat Sep 17, 2016 10:36 am

There is no way to bind something with Fn key out of the box. But you can use a low-level software such as Karabiner to bind fn+del to F8.

Like that:

Code: Select all

<?xml version="1.0"?>
<root>
<item>
        <name>Fn-del to F8</name>
        <identifier>private.fn-del-to-f8</identifier>
        <autogen>
            __KeyToKey__
            KeyCode::DELETE, ModifierFlag::FN,
            KeyCode::F8
        </autogen>
</item>
</root>
manual

User avatar
mike
Posts: 1060
Joined: Thu Jul 16, 2015 5:35 am
Location: Exeter, UK

Re: Hotkey fn+Backspace

Post by mike » Tue Sep 20, 2016 11:52 am

This reason why this combination can't be assigned as a hotkey is simple - Fn+Backspace actually produces an ordinary Delete key stroke.
On some keyboards (like a wired Apple keyboard, which I like a lot) it's a physical button.
And macOS generally does not allow assigning a regular button press without modifier as a hotkey (with an exception of F1..F19 buttons).

Locked