highline
highline copied to clipboard
A higher level command-line oriented interface.
Perhaps we will need to use [yamatanooroti](https://github.com/aycabta/yamatanooroti) and [vterm-gem](https://github.com/aycabta/vterm-gem) the way reline itself does in [test_rendering.rb](https://github.com/ruby/reline/blob/100cc1606a75fb060db274c2a1c4a082af3a5a82/test/reline/yamatanooroti/test_rendering.rb)
Hi, Recently, Debian started to build the ruby interpreter against libedit instead of readline for license reasons: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=977724 One test in highline gem started to fail after this change: ```...
Happy Monday, Playing around with HighLine, finding myself in a situation where I need finer-grained access to tab completion than an array. Looking at [terminal.rb](/JEG2/highline/blob/f6dad04066a7ec982f07d12db04aa8633a541ec3/lib/highline/terminal.rb#L116) it seems as if it...
Well, I have already heard about documentation driven development.... I will not try to do that, but I can't deny that as I try to write more documentation or fix...
The RDoc says to use the `gather` attribute of a `Question` to select multiple items. This works when using `ask`, but it fails when using `choose`. This seems odd since...
I am trying to get a single character from the user in a "cleaner" way than with `SystemExtensions.get_character`, which is not well documented and feels rather like a hack to...
Hi, I just wanted to touch base and see if the following functionality would be approved as a patch to this code base as I am planning to code it...
HighLine::Menu feels relatively restricted. Besides the index, the output of each line can only contain the item. This means that where you have simple items and more descriptive textual forms...
I discovered [Yeoman](http://yeoman.io/) recently and I'm really impressed by their terminal interface. Yeowman is a scaffold generator similar to "rails generate", but it's general-purpose and written in JavaScript. Their terminal...
I'm hacking on highline for rails template generator of mine and want menu options to be nicely indented when printed, but I've found no easy way to do this. I...