phil294 / AHK_X11

AutoHotkey for Linux (X11-based systems)
GNU General Public License v2.0
815 stars 15 forks source link

Weird accents behavior #65

Open baldraven opened 10 months ago

baldraven commented 10 months ago

Hopefully those issues were not already known and will be useful ! I'm using Arch Linux with Awesome WM for Xorg, running the program from zsh with the AppImage.

f::é Replaces 'f' by 'é', working as expected

+f::é Replaces 'shift+f' by 'ò'

f::î Replaces 'f' with 'à'

f::Send,{ASC 238} Shows error : key name 'ASC' not found

f1::î Makes the keyboard impossible to use until the program is exited with the mouse.

I can provide more infos and investigate further if needed.

phil294 commented 10 months ago

Probably the same problem as #32 - will still take a bit until this is fixed.

In the meantime, you can do for example

+f::SendRaw é
phil294 commented 10 months ago

note to self, please ignore:

;Arrows
!a::Send {Left}
!d::Send {Right}
!w::Send {Up}
!s::Send {Down}