2013-11-27 32 views
0

我正在使用小狗linux 5.2.8和我想映射功能 鍵F2和F3根據我們的setup.when我按F3我的安裝文件 應該運行。我試過bind函數綁定鍵。它工作正常。keymapping在小狗linux usig綁定功能

`bind '"\eOQ":"pwd\n"'` 

    But I want to make this changes permanently I used to put this in .xinitrc 
    file to take effect but it is not working.Please give me a suggestion to make this 
    effect permanent. 

回答

0

我假設你試圖使這項工作從提示?假設你正在使用bash(或使用readline的任何其他的shell),你可以把它變成~/.inputrc

"\eOQ": "pwd\n" 

CTRL + X按Ctrl + R應該重新處理您的~/.inputrc,但我發現過去不可靠。所以最好重啓你的shell。

如果你想這個限制只是bash中,你可以在有條件的包裝它:

$if Bash 
    "\eOQ": "pwd\n" 
$endif 
+0

感謝先生。我已經檢查了〜/ .inputrc文件文件,但它不是present.so我把它在.xinitrc文件上,但它不起作用。 – nilesh

+0

@nilesh創建它。 '.xinitrc'由'startx'使用,它不是你想要的地方。 – jszakmeister

+0

謝謝主席先生我已經創建了〜/ .inputrc文件並且pste代碼如下: - 「\ eOQ」:「pwd \ n」 並且重新啓動了機器,但是效果沒有發生。 – nilesh