10

Why is the most useful Explorer shortcut (rename element, F2) besides the least useful one (Help, F1)??
And why does Help open in the browser? Not the default one, but EDGE.
Fuck them. I'll find a way of disabling F1 one day...

Comments
  • 1
    There's AutoHotkey for you.
  • 2
    Shit man, didn't even know the f2 shortcut... Never took the effort to look them up I guess. It's a great one though!
  • 4
    @NEMESISprj Are you function-key-fucking kidding me?!
  • 1
    @Cyanide I could've figured it out tbh, I constantly use f2 in my IDE to rename files
  • 4
    @NEMESISprj Well then you know the shortcut.
  • 1
    It is ironical that F1 is assigned to help
  • 2
    Um.. There's always an option to beat the shit out of F1 making it fall out, hence less chance to actually press it..
  • 1
  • 0
    @kamen I already have it (for renaming extensions without having to use the mouse). I should see how to do that, have you done something similar? Like, is it possible to do?
  • 3
    @c3r38r170 Hahhaha, you now have a terminator keyboard!!
    F1 will not be back!! 🤣🤣🤣🤣😇
  • 2
    @c3r38r170 Fully possible, yes. It's as simple as this:

    #If WinActive("ahk_exe explorer.exe")
    F1::
    MsgBox, Hello, world!
    return

    You can use Window Spy (accessible from the context menu of the script's icon in the tray) to look at exes and classnames to make these directives.

    Also try the latest release of PowerToys, it also has the ability to remap keys on a per-app basis.
  • 1
    @kamen Interesting, interesting. Definitely gonna try.
Add Comment