AHK_X11 icon indicating copy to clipboard operation
AHK_X11 copied to clipboard

Weird accents behavior

Open baldraven opened this issue 2 years ago • 2 comments

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.

baldraven avatar Nov 12 '23 22:11 baldraven

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 avatar Nov 16 '23 12:11 phil294

note to self, please ignore:

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

phil294 avatar Nov 21 '23 20:11 phil294