2016-10-05 127 views
1

rxvt-unicode能夠使用Ctrl+Meta+CCtrl+Meta+VMeta通常爲Alt)複製到系統剪貼板。在urxvt中複製和粘貼

有沒有辦法將這些功能重新綁定到其他鍵? Ctrl+Shift+CCtrk+Shift+V將是更直觀的選擇。

回答

3

我只是設法讓昨天工作。以下是我需要的X資源:

! Disable ISO 14755 unicode input so we can use Ctrl-Shift bindings 
URxvt.iso14755:  false 
URxvt.iso14755_52:  false 

! Disable Ctrl-Alt-c & Ctrl-Alt-v bindings (optional) 
URxvt.keysym.C-M-c: builtin-string: 
URxvt.keysym.C-M-v: builtin-string: 

! Bind Ctrl-Shift-c & Ctrl-Shift-v to copy and paste 
! I dont know why, but I needed to use hex keysym values to get it to work 
URxvt.keysym.C-S-0x43: eval:selection_to_clipboard 
URxvt.keysym.C-S-0x56: eval:paste_clipboard