Hhkb Keyborad Setting for Azerty French User
As a developer living in Paris, I have to use a standard AZERTY ISO French keyboard at work, so my HHKB needs to have a similar configuration to a standard French keyboard.
I used the HHKB mapping tool to change the Ctrl and Caps keys and AutoHotkey to map Alt + W to < and Alt + Shift + W to >.
Create the script
Here is the script:
#Requires AutoHotkey v2.0
!w::
{
Send "<"
}
+!w::
{
Send ">"
}
Run automatically the script every time your computer starts
Create a shortcut of your script:
Locate your AutoHotkey script (a .ahk file). Right-click on the script and select “Create shortcut”. Place the shortcut in the “Startup” folder:
Press Win + R to open the Run dialog box. Type shell:startup and press Enter to open the Startup folder. Drag and drop the shortcut you created into this folder. Now, your AutoHotkey script will run automatically every time your computer starts.