module Helper

Misc. helper methods which accomplish some common tasks.

Public Class Methods

highlight(text) click to toggle source
# File lib/terminal-file-picker/helper.rb, line 19
def highlight(text)
  Pastel.new.decorate(text, :inverse)
end
print_in_place(text) click to toggle source