Ctrl+x 奇妙な動作が発生する

Ctrl+x 奇妙な動作が発生する

他のすべてのCtrlショートカットはうまく機能します(Ctrl+Cコピーなど)。しかし、これを入力するとCtrl+X何も起こりません。私はxev押したときに何が起こるのかを示しましたCtrl+X

次へを押すと出力されますCtrl+C

#Pressing Ctrl
KeyPress event, serial 40, synthetic NO, window 0x6400001,
    root 0x933, subw 0x0, time 17087932, (110,100), root:(110,129),
    state 0x0, keycode 37 (keysym 0xffe3, Control_L), same_screen YES,
    XLookupString gives 0 bytes: 
    XmbLookupString gives 0 bytes: 
    XFilterEvent returns: False

#Pressing c
KeyPress event, serial 40, synthetic NO, window 0x6400001,
    root 0x933, subw 0x0, time 17088261, (110,100), root:(110,129),
    state 0x4, keycode 31 (keysym 0x63, c), same_screen YES,
    XLookupString gives 1 bytes: (03) ""
    XmbLookupString gives 1 bytes: (03) ""
    XFilterEvent returns: False

#Releasing c
KeyRelease event, serial 40, synthetic NO, window 0x6400001,
    root 0x933, subw 0x0, time 17088376, (110,100), root:(110,129),
    state 0x4, keycode 31 (keysym 0x63, c), same_screen YES,
    XLookupString gives 1 bytes: (03) ""
    XFilterEvent returns: False

#Releasing Ctrl
KeyRelease event, serial 40, synthetic NO, window 0x6400001,
    root 0x933, subw 0x0, time 17088675, (110,100), root:(110,129),
    state 0x4, keycode 37 (keysym 0xffe3, Control_L), same_screen YES,
    XLookupString gives 0 bytes: 
    XFilterEvent returns: False

ただし、次のように入力するとこれが発生しますCtrl+X

KeyPress event, serial 40, synthetic NO, window 0x6400001,
    root 0x933, subw 0x0, time 17089955, (110,100), root:(110,129),
    state 0x0, keycode 37 (keysym 0xffe3, Control_L), same_screen YES,
    XLookupString gives 0 bytes: 
    XmbLookupString gives 0 bytes: 
    XFilterEvent returns: False

FocusOut event, serial 40, synthetic NO, window 0x6400001,
    mode NotifyGrab, detail NotifyAncestor

FocusOut event, serial 40, synthetic NO, window 0x6400001,
    mode NotifyUngrab, detail NotifyPointer

FocusIn event, serial 40, synthetic NO, window 0x6400001,
    mode NotifyUngrab, detail NotifyAncestor

KeymapNotify event, serial 40, synthetic NO, window 0x0,
    keys:  2   0   0   0   32  0   16  0   0   0   0   0   0   0   0   0   
           0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   0   

KeyRelease event, serial 40, synthetic NO, window 0x6400001,
    root 0x933, subw 0x0, time 17090318, (110,100), root:(110,129),
    state 0x4, keycode 52 (keysym 0x78, x), same_screen YES,
    XLookupString gives 1 bytes: (18) "▒"
    XFilterEvent returns: False

KeyRelease event, serial 40, synthetic NO, window 0x6400001,
    root 0x933, subw 0x0, time 17090555, (110,100), root:(110,129),
    state 0x4, keycode 37 (keysym 0xffe3, Control_L), same_screen YES,
    XLookupString gives 0 bytes: 
    XFilterEvent returns: False

また、マウスポインタを押すたびCtrl+Xに移動するまで消える現象が、FocusOut eventすべてのキーボードレイアウトで発生することに気づきました。

編集する: これはi3では発生せず、KDEでのみ発生するため、KDE関連の問題のようです。

ベストアンサー1

おすすめ記事