Created
March 24, 2009 13:28
-
-
Save Pafuxu/84080 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### .inputrc | |
# 日本語環境設定 | |
set convert-meta off | |
set output-meta on | |
set input-meta on | |
# 大文字小文字を無視 | |
set completion-ignore-case on | |
# コマンド履歴補完を賢くする | |
"\C-n":history-search-forward | |
"\C-p":history-search-backward | |
# 補完のたびにベルを鳴らせない(bell-style), 補完候補が複数個あった場合にすぐに全部表示され(show-all-if-ambiguous), 補完時にコマンドかディレクトリか見て分かる(visible-stats) <ref-url=http://www003.upp.so-net.ne.jp/quasi/linuxnote.html> | |
set show-all-if-ambiguous on | |
set visible-stats on | |
# Leopardから環境設定で行える | |
#set bell-style visible |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment