我目前正在運行ubuntu 14.04(帶有compiz窗口管理器),並且難以在gnome-terminal處於焦點時禁用快捷方式。這是關於(打擾和無用)「查找」窗口彈出後彈出Ctrl + Shift + F。在gnome終端中禁用「查找」快捷鍵(CTRL-SHIFT-F)
此鍵聯結是不中提到:
- 設置CTRL-Shift-F鍵作爲快捷方式與不同的行爲明確:
1) ccsm -> general options -> keybindings 2) ccsm -> commands -> keybindings 2) gconf-editor -> /apps/gnome-terminal/keybindings 4) dconf-editor -> /org/gnome/terminal <-- entry does not exist 5) gnome-terminal -> edit -> keyboard shortcuts 6) system settings -> keyboard -> shortcuts -> [all entries]
我都沒有成功嘗試,例如 開關選項卡,在終端的gnome
編輯/home/USER/.gtkrc,的.gtkrc-2.0和的.gtkrc-3.0到:
binding "CustomNoSearch" { unbind "<ctrl><shift>f" } class "*" binding "CustomNoSearch"
編輯/家/ USER /.config/gtk-2.0/gtk-keys.css和../git-3.0/gtk-keys.css:
@binding-set custom-no-search { unbind "<ctrl><shift>f"; } GtkEntry { gtk-key-bindings: custom-no-search; }
更改鍵盤輸入法系統從IBUS到無(系統設置 - >語言支持 - >鍵盤輸入法系統),就禁止一切,包括CTRL-移-F,但是這是太多了。
在這一點上,我已經用盡了想法。這種行爲定義在哪裏? 任何幫助非常感謝!
該快捷方式在[terminal-window.c](https://github.com/GNOME/gnome-terminal/blob/master/src/terminal-window)中定義。c)(向下滾動到2427行)。 – 2014-12-12 17:09:57