Class: TTY::Prompt::List
- Inherits:
-
Object
- Object
- TTY::Prompt::List
- Defined in:
- lib/commitgpt/string.rb
Overview
Monkey patch to add padding
Instance Method Summary collapse
- #original_render_menu ⇒ Object
-
#render_menu ⇒ Object
Override render_menu to add empty lines at the bottom.
Instance Method Details
#original_render_menu ⇒ Object
10 |
# File 'lib/commitgpt/string.rb', line 10 alias |
#render_menu ⇒ Object
Override render_menu to add empty lines at the bottom
13 14 15 16 17 |
# File 'lib/commitgpt/string.rb', line 13 def output = # Add 2 empty lines at the bottom so menu doesn't stick to terminal edge "#{output}\n\n" end |