Method: Curses::Window#bold

Defined in:
lib/twterm/extensions/curses/window.rb

#bold(&block) ⇒ Object



2
3
4
5
6
# File 'lib/twterm/extensions/curses/window.rb', line 2

def bold(&block)
  attron(Curses::A_BOLD)
  block.call
  attroff(Curses::A_BOLD)
end