我在 cygwin 上的 bash 安装不能正确处理重音字母。我尝试添加
set input-meta on # to accept 8-bit characters
set output-meta on # to show 8-bit characters
set convert-meta on # to show it as character, not the octal representation
到我的输入 rc,但这还不能正常工作。确实,如果我输入
$ echo ù
然后在我按回车之前它会自动更改为
$ echo \303
虽然输出是正确的,但我得到了
$ echo \303
ù
对于任何其他重音字母,我得到相同的结果。通常虽然我使用非意大利语键盘,并且我autohotkey
习惯用带重音字母的撇号替换字母。在这种情况下,重音字母被替换为 a \302
,并且它们根据字母打印垃圾:为 a 打印 a 3y
,ù
为¢
an打印 a ,ò
其他任何内容都没有。
我怎样才能让这一切变得有意义?
编辑:我的语言环境设置、cygwin 版本和终端如下
$ uname -a
CYGWIN_NT-6.1-WOW64 ferdi-Asus 1.7.17(0.262/5/3) 2012-10-19 14:39 i686 Cygwin
$ locale
LANG=it_IT.UTF-8
LC_CTYPE="it_IT.UTF-8"
LC_NUMERIC="en_US.UTF-8"
LC_TIME="it_IT.UTF-8"
LC_COLLATE="it_IT.UTF-8"
LC_MONETARY="it_IT.UTF-8"
LC_MESSAGES="it_IT.UTF-8"
LC_ALL=
$ tty
/dev/pty1
我只需单击 Cygwin 终端链接即可调用它。它重定向到
C:\cygwin\bin\mintty.exe -i /Cygwin-Terminal.ico -
autohotkey 脚本的相关部分如下
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
...
::avra'::avrà
::avro'::avrò
...