Alpha Chen 9 months ago
parent 339973bb32
commit 436e8d013e
Signed by: alpha
SSH Key Fingerprint: SHA256:3fOT8fiYQG/aK9ntivV3Bqtg8AYQ7q4nV6ZgihOA20g

@ -1,7 +1,18 @@
require 'pp'
# make it more pry-like
IRB.conf[:PROMPT][:ALPHA] = {
:PROMPT_I => "[%n] %N(%m)> ",
:PROMPT_S => "[%n] %N(%m)> ",
:PROMPT_C => "[%n] %N(%m)* ",
:RETURN => "=> %s\n",
}
IRB.conf[:PROMPT_MODE] = :ALPHA
# needs prism and rbs
IRB.conf[:COMPLETOR] = :type
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
@ -9,11 +20,17 @@ if defined?(Reline::Face) # https://github.com/ruby/irb/issues/328
end
end
## utility functions
def pbcopy(str=nil)
str = yield if block_given?
IO.popen(%w[pbcopy], 'w') {|io| io.write str }
end
def tic; @_tic = Time.now; end
def toc; Time.now - @_tic; end
# IRB.conf[:AUTO_INDENT] = true
# IRB.conf[:EVAL_HISTORY] = 1000
# IRB.conf[:SAVE_HISTORY] = 1000
@ -33,5 +50,5 @@ end
# Readline::HISTORY.to_a
# end
irbrc_local = File.expand_path('../.irbrc.local', __FILE__)
irbrc_local = File.expand_path(".irbrc.local", __dir__)
require irbrc_local if File.exist?(irbrc_local)

Loading…
Cancel
Save