How to disable the Ctrl+Shift binding (ISO 14755) in urxvt?

Ébe Isaac

Whenever the Ctrl+Shift key combo is pressed, the text ISO 14755 mode text pops up at the corner of the terminal window in urxvt. Is there a way to remove this without having to rebuild urxvt?

I'm using a pre-built version of urxvt in Manjaro Linux (i3wm). I wanted to have the copy and paste binded to Ctrl+Shift+C and Ctrl+Shift+V respectively. I followed this solution and worked. But that's when this problem started occurring.

According to this source, the switch can be solved by adding these two lines to the ~/.Xresources file.

URxvt.iso14755: true
URxvt.iso14755_52: false

However, the mini-dialog still pops with ISO 14755 mode each time I execute copy or paste. Another solution involves removing the iso support before building the package using the ./configure --disable-iso14755, but I would like to solve it without having to reinstall the package.

Gilles 'SO- stop being evil'

You've disabled keycap picture insert mode but not basic ISO 14755 mode. To disable both, set both to false.

URxvt.iso14755: false
URxvt.iso14755_52: false

After changing ~/.Xresources, reload the file with

xrdb -merge <~/.Xresources

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to disable Ctrl + Shift + C shortcut in Firefox?

From Dev

How to disable Ctrl+Shift+U?

From Dev

How to disable Ctrl+Shift+C in Firefox

From Dev

How to disable shortcuts in urxvt?

From Dev

How to disable the bell in urxvt?

From Dev

How to disable Ctrl+Shift keyboard layout switch in Windows 8?

From Dev

How to disable CTRL+Shift+A screenshot on Windows 10

From Dev

How to disable urxvt autoscroll on output?

From Dev

How to disable Ctrl+Shift keyboard layout switch (for the same input language) in Windows?

From Dev

How can I disable Ctrl+Shift+W on Chrome for Windows 7

From Dev

How to disable “Ctrl+Shift+J” shortcut on a MacBook Pro’s Japanese keyboard?

From Dev

How to disable Ctrl+Shift keyboard layout switch (for the same input language) in Windows 10?

From Dev

How Can I Disable the Global Shortcut CTRL + SHIFT + U in Linux Mint?

From Dev

How can I disable Ctrl+Shift+Arrow from causing my screen to flip?

From Dev

Disable bold font in urxvt

From Java

How to disable BottomNavigationView shift mode?

From Dev

Disable `ctrl+shift+w` shortcut in Firefox Linux

From Dev

How to assign CTRL + SHIFT + V as a KeyGesture?

From Dev

How to check if CTRL and SHIFT are pressed simultaneously in PyQt?

From Dev

How to map Capslock to CTRL+SHIFT+B?

From Dev

How to assign CTRL + SHIFT + V as a KeyGesture?

From Dev

How to disable the shift+anykey combinations in angularjs

From Dev

How to disable Ctrl+U using Javascript

From Dev

How to disable ctrl + space event in Netbeans

From Dev

How to disable ctrl-n with AutoHotkey?

From Dev

How to permanently disable Ctrl-s in terminal?

From Dev

How to disable stuck ctrl key in software/memory?

From Dev

How to disable CTRL ALT key on windows 7?

From Dev

How to enable Paste function with Ctrl-Shift-V in Ubuntu 13.10?

Related Related

  1. 1

    How to disable Ctrl + Shift + C shortcut in Firefox?

  2. 2

    How to disable Ctrl+Shift+U?

  3. 3

    How to disable Ctrl+Shift+C in Firefox

  4. 4

    How to disable shortcuts in urxvt?

  5. 5

    How to disable the bell in urxvt?

  6. 6

    How to disable Ctrl+Shift keyboard layout switch in Windows 8?

  7. 7

    How to disable CTRL+Shift+A screenshot on Windows 10

  8. 8

    How to disable urxvt autoscroll on output?

  9. 9

    How to disable Ctrl+Shift keyboard layout switch (for the same input language) in Windows?

  10. 10

    How can I disable Ctrl+Shift+W on Chrome for Windows 7

  11. 11

    How to disable “Ctrl+Shift+J” shortcut on a MacBook Pro’s Japanese keyboard?

  12. 12

    How to disable Ctrl+Shift keyboard layout switch (for the same input language) in Windows 10?

  13. 13

    How Can I Disable the Global Shortcut CTRL + SHIFT + U in Linux Mint?

  14. 14

    How can I disable Ctrl+Shift+Arrow from causing my screen to flip?

  15. 15

    Disable bold font in urxvt

  16. 16

    How to disable BottomNavigationView shift mode?

  17. 17

    Disable `ctrl+shift+w` shortcut in Firefox Linux

  18. 18

    How to assign CTRL + SHIFT + V as a KeyGesture?

  19. 19

    How to check if CTRL and SHIFT are pressed simultaneously in PyQt?

  20. 20

    How to map Capslock to CTRL+SHIFT+B?

  21. 21

    How to assign CTRL + SHIFT + V as a KeyGesture?

  22. 22

    How to disable the shift+anykey combinations in angularjs

  23. 23

    How to disable Ctrl+U using Javascript

  24. 24

    How to disable ctrl + space event in Netbeans

  25. 25

    How to disable ctrl-n with AutoHotkey?

  26. 26

    How to permanently disable Ctrl-s in terminal?

  27. 27

    How to disable stuck ctrl key in software/memory?

  28. 28

    How to disable CTRL ALT key on windows 7?

  29. 29

    How to enable Paste function with Ctrl-Shift-V in Ubuntu 13.10?

HotTag

Archive