XKB 错误:无法查找 keysym 符号解释被忽略

XKB 错误:无法查找 keysym 符号解释被忽略

我有某人的 XKB 文件绑定Caps+uhjk到箭头(这是文件https://gist.github.com/AlexP11223/945e24fdc07ae8b093ef939b46d30b64与原来的差异)。现在我尝试将Caps+绑定ioplHome, End, Page Up,Page Down并且Error: Couldn't lookup keysym Symbol interpretation ignored 在添加时得到

    interpret osfHome {
        repeat= True;
        action = RedirectKey(keycode=<HOME>, clearmodifiers=Lock);
    };

即使interpret上面非常相似的工作正常

    interpret osfLeft {
        repeat= True;
        action = RedirectKey(keycode=<LEFT>, clearmodifiers=Lock);
    };

uhjk这是包含与该文件的差异和所有错误(标准和所有警告)的文件。https://gist.github.com/AlexP11223/2e7407bd002440fa4f0b1433a90a15af

相关内容