Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6469497
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T05:59:53+00:00 2026-05-25T05:59:53+00:00

I’m writing an curses-like program in Ruby, and I’m using stty and ansi escape

  • 0

I’m writing an curses-like program in Ruby, and I’m using stty and ansi escape characters to achieve what I want. My problem occurs when I want to get user input. Like many console based programs, I want to get user input from the bottom of the terminal.

Thus, I place the cursor at the bottom of the screen and call Readline.readline (or whatever method to get user input). As usual, it reads everything until I hit return, and a newline is printed. Since the cursor is at the last line of the terminal, it scrolls one line, which messes up the screen.

How can I avoid this? I tried to use stty to stop echoing of newlines, but I didn’t succeed. Maybe one can use stty to stop the terminal from scrolling? Of course, I could write my own method for catching input by reading one character at a time (and catching the “return”), but I want to use all the extras that readline provides.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T05:59:53+00:00Added an answer on May 25, 2026 at 5:59 am

    Ruby Readline is a simple wrapper for the GNU Readline library, which directly manages terminal modes – this is why you might not be having much luck using stty to modify terminal settings. The Readline.readline method specifically puts the terminal into raw mode and echoes all characters back to STDOUT (or Readline.output for Ruby 1.9, which defaults to STDOUT).

    Unfortunately, the Ruby Readline wrapper does not completely wrap the GNU Readline library; GNU Readline provides a number of functions for redisplay, but the Ruby Readline wrapper does not expose these functions.

    If you specifically want to use Readline and Ruby and need to ignore that newline, you don’t have a ton of options. One option, which is kind of silly, is to open a pipe as an intermediary listening on its own thread and forward all Readline output to it. The following accomplishes this, but be warned, this isn’t what you really want (and on OSX it required ruby 1.9.2 linked against readline instead of libedit, because libedit is blocking)….

    require 'readline'
    
    `mkfifo /tmp/readline-pipe`
    
    Readline.output = File.open("/tmp/readline-pipe", "w+")
    
    Thread.new {
      input = open("/tmp/readline-pipe", "r+")
      while true
        character = input.getc
        if character != "\n"
          $stdout.write(character)
          $stdout.flush
        end
      end
    }
    
    begin
      while line = Readline.readline("", true)
        $stdout.write(" NEWLINE ENTERED BUT NOT DISPLAYED ")
        $stdout.flush
      end
    rescue EOFError
      puts "Exiting..."
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
That's pretty much it. I'm using Nokogiri to scrape a web page what has
For some reason, after submitting a string like this Jack’s Spindle from a text
I've got a string that has curly quotes in it. I'd like to replace
I have a French site that I want to parse, but am running into
I want use html5's new tag to play a wav file (currently only supported
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I am currently running into a problem where an element is coming back from
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.