Created
November 18, 2010 08:46
-
-
Save noqisofon/704787 to your computer and use it in GitHub Desktop.
.irbrc の中身。
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
# .irbrc | |
# -*- encoding: shift_jis -*- | |
require 'rubygems' | |
# タブ補完を有効にします。 | |
require 'irb/completion' | |
# コマンド履歴を有効にします。 | |
require 'irb/ext/save-history' | |
require 'wirble' | |
# プロンプトをデフォルトにします。 | |
Wirble.init( :skip_prompt => :DEFAULT ) | |
unless RUBY_PLATFORM =~ /.*mingw32/ then | |
# コマプロでは文字化けしてしまうのでカラフルにはしません。 | |
Wirble.colorize | |
end | |
# コマンド履歴が 1000 件保存されます。 | |
IRB.conf[:SAVE_HISTORY] = 1000 | |
# 構文に沿ったインデントを行います。 | |
IRB.conf[:AUTO_INDENT] = true | |
;; .irbrc ends here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment