You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
986 B
38 lines
986 B
10 years ago
|
require 'pp'
|
||
|
|
||
12 months ago
|
if defined?(Reline::Face) # https://github.com/ruby/irb/issues/328
|
||
|
# Tweak IRB's default colors
|
||
|
Reline::Face.config(:completion_dialog) do |conf|
|
||
|
conf.define :default, foreground: :black, background: :cyan
|
||
|
conf.define :enhanced, foreground: :black, background: :magenta
|
||
|
conf.define :scrollbar, foreground: :white, background: :blue
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def pbcopy(str=nil)
|
||
|
str = yield if block_given?
|
||
|
IO.popen(%w[pbcopy], 'w') {|io| io.write str }
|
||
|
end
|
||
10 years ago
|
|
||
12 months ago
|
# IRB.conf[:AUTO_INDENT] = true
|
||
|
# IRB.conf[:EVAL_HISTORY] = 1000
|
||
|
# IRB.conf[:SAVE_HISTORY] = 1000
|
||
|
# IRB.conf[:HISTORY_FILE] = "#{ENV['HOME']}/.irb_history"
|
||
10 years ago
|
|
||
|
# shut irb up
|
||
|
# IRB.conf[:PROMPT][ IRB.conf[:PROMPT_MODE] ][:RETURN] = ''
|
||
|
|
||
|
# require 'wirble'
|
||
|
# def pc(*ary)
|
||
|
# ary.each do |obj|
|
||
|
# puts Wirble::Colorize.colorize(obj.inspect)
|
||
|
# end
|
||
|
# end
|
||
|
|
||
10 years ago
|
# def history
|
||
|
# Readline::HISTORY.to_a
|
||
|
# end
|
||
10 years ago
|
|
||
|
irbrc_local = File.expand_path('../.irbrc.local', __FILE__)
|
||
2 years ago
|
require irbrc_local if File.exist?(irbrc_local)
|