The Gnu readline library is used by other programs, such as shells and interpreters, to provide common line-editing capabilities.
8
votes
1answer
183 views
R command history: how to configure up-arrow to treat “multiline, brace-enclosed input” as one line?
This question is about configuring the R console to behave like a bash shell when it comes to navigating the command history. It is somewhat related to the ?history. For brace-enclosed multi-lines, ...
0
votes
1answer
235 views
undefined reference to `readline' [duplicate]
I'm having a problem trying to run the GNU Readline library sample code available in wikipedia. Here it goes:
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include ...
0
votes
1answer
57 views
don't load readline module in irb
The readline extension on my OSX seems buggy.
$irb -f --noreadline
irb(main):001:0> "中文"
=> "中文"
$irb -f --readline
irb(main):001:0> \U+FFE4\U+FFB8\U+FFAD\U+FFE6
So I want to set ...
0
votes
1answer
105 views
Why GNU Readline so slow?
I write a program for encrypting.
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <readline/readline.h>
int main(void) {
char * plain;
char ...
2
votes
2answers
218 views
pty functionality for socket
I'm writing the linux daemon and I want to implement ability to configure its params via telnet. I have a cli interface code, written using gnu readline library with history and completers and I'd ...
1
vote
2answers
57 views
Autoclose GNU Readline
Working on various GNU Readline-based CLIs and it would dramatically
speed me up if there was a way to have brackets and quotes
automatically closed when you type.
Thus typing a ' or ( on Bash (or ...
1
vote
1answer
190 views
No readline support while using pdb.set_trace()
I have an application running Python 2.6.X. Starting the Python interpreter in interactive mode (with or without using virtualenv): readline support working (command history).
Starting my application ...
2
votes
3answers
3k views
no such file to load — readline (Load Error)
When I want to execute Rails 3 console, it throws this:
$ script/rails c
/usr/local/rvm/rubies/ruby-1.9.2-p318/lib/ruby/1.9.1/irb/completion.rb:9:in `require': no such file to load -- readline (Load ...
1
vote
0answers
140 views
How do I change my readline path?
I'm trying to install ipython, which appears to require the readline library.
I did install readline via easy_install. But every test I run iptest (or any other file) it spits this back:
dyld: ...
1
vote
1answer
295 views
GNU Readline (libreadline): Displaying output message asynchronously
While using readline (blocking) for user input, I would like to output lines of text to the console asynchronously from another thread. Further, I would like that the readline prompt and current ...
2
votes
2answers
2k views
Readline error when trying to start rails console
UPDATE: I probably messed up my system while trying solutions found somewhere else. I started from scratch and ruby 1.9.3 installed without a hitch. Now to try to get ree-1.8.7 to play nice ...
17
votes
3answers
12k views
install ruby 1.9.3 using rvm on ubuntu [duplicate]
Possible Duplicate:
Ruby 1.9.2 and Rails 3 cannot open rails console
I have already installed rvm and ruby 1.9.2, both working properly. Using rvm version 1.10.2. I previously installed the ...
26
votes
11answers
10k views
How to get Readline support in IRB using RVM on Ubuntu 11.10
I have tried everything I can think of to get this to work, to no avail so here I am requesting suggestions on how to debug.
Firstly, runnning Ubuntu 11.10
Installed rvm:
$ bash < <(curl -s ...
0
votes
1answer
640 views
Tab Completion in C (readline library)
I have been trying to get tab completion working.. I am very confused and don't know what to do. Could you please take a look at my code and tell me how I could possibly fix it.
By the way I used ...
2
votes
1answer
544 views
How do I link against the GNU readline library rather than libedit in macosx?
Attempting to build Term-Readline-Gnu on macosx, fails complaining about libedit and recommending to use gnu readline. How do I do that?
This is one of the attempts I have tried:
First I built GNU ...
5
votes
1answer
386 views
Ruby line editing telnet server
I am implementing a little telnet server in Ruby. The problem I'm currently facing is that I want to add readline support so that I can have tab-completion and command-line history support. I have ...
4
votes
2answers
480 views
Need a progress indicator for a Perl system() command using T:R:G mod
I want a progress indicator that takes the output of a Perl
system('make')
and for each line output to STDOUT from the make command, I want to output a dot as a progress indicator. ...
3
votes
4answers
428 views
how to output messages to stdout on another thread while reading from stdin with GNU readline without messing up the inputs?
Sorry for the long title. I am developing a network program in C which may display messages received from network on stdout and accept user input on stdin via the GNU readline library.
The problem is, ...
5
votes
3answers
1k views
Statically linked, correctly working readline library under windows?
we're developing a c++ software package which depends on the GNU readline library and we usually build using gcc (requiring at least version 4). Now we would like to port this to windows, obtaining a ...
3
votes
3answers
836 views
python line editing telnet server
I am creating a server in python (what it is doing is irrelevant), but I would like it to accept telnet connections and provide a command line interface with line editing capabilities (tabcompletion, ...
3
votes
3answers
2k views
Installing Heroku on Ubuntu Lucid Lynx is broken
I am trying to get a Ruby on Rails app hosted free somewhere, and Heroku is looking like my last resource. It is supposed to work on Linux, and the gem installs with no errors, but whenever I run any ...
0
votes
1answer
632 views
Rails 3.0 console won't run
bash-3.2# rails console
/opt/local/lib/ruby1.9/1.9.1/irb/completion.rb:9:in `require': dlopen(/opt/local/lib/ruby1.9/1.9.1/i386-darwin10/readline.bundle, 9): Library not loaded: ...
3
votes
4answers
663 views
Bash usage of vi or emacs
From a programming standpoint, when you set the bash shell to use vi or emacs via
set -o vi
or
set -o emacs
What is actually going on here? I've been reading a book where it claims the bash ...