0
votes
1answer
8 views
How do I compile Readline support into Ruby
My version of ruby was compiled with editline (on os x) and I miss the features of readline in irb.
How do I recompile ruby with readline support?
2
votes
5answers
363 views
Press alt + numeric in bash and you get (arg [numeric]) what is that?
This is one of those questions where it is easier to ask someone else instead of spending thirty minutes trying to "guess" for the correct place in the documentation or search engi …
1
vote
1answer
39 views
How can prevent a space from being appended to the tab-completed word using Perl’s Term::Readline?
I am using tab completion support of Term::ReadLine::Gnu module. Every time I do a tab, I get a space after the completed word.
For example:
If i have a word "complete" as a pos …
1
vote
1answer
337 views
Using GNU Readline; how can I add ncurses in the same program?
The title is a bit more specific than my actual goal:
I have a command-line program which uses GNU Readline, primarily for command history (i.e. retrieving previous commands using …
0
votes
1answer
68 views
Tab completion interrupt for large binaries
If I accidentally launch tab completion when debugging large binary,
gdb will freeze for some time scanning symbol table (up to 1 minute in my case).
So I have to wait until whole …
2
votes
3answers
123 views
ANSI C getc causes segfault on Linux but not OS X
I have some ANSI C code that I developed on my Mac, but when I tried running it on our school's Linux servers I get a segfault.
The specific line that is causing me trouble is a g …
0
votes
1answer
89 views
java nested while loop using readline
I'm confused. I'm trying to loop though 2 files looking at the first token in every line of the first file and comparing it to the third token of every line of the second file. Her …
0
votes
3answers
228 views
In Perl, how can I read parts of lines that match a criterion?
Sample Data:
603 Some garbage data not related to me, 55, 113 ->
1-ENST0000 This is sample data blh blah blah blahhhh
2-ENSBTAP0 This is also some other sa …
2
votes
1answer
63 views
Readline’s vi-mode in vim ex mode
Let's see if I can explain myself.
I use vi-mode in bash, which is really great since I'm used to Vi.
When I'm inside vim and type : (to go to ex mode), since I'm used to the vi- …
1
vote
0answers
62 views
mac osx tab completion [closed]
Hi -
I'm just moved from linux to mac, and one of the problems I'm having is that tab completion is only 1 level deep, and I'm not sure how to correct that.
Let me explain by e …
0
votes
1answer
38 views
can Bash be configured to search string on the current input line?
For fast locating positions when using the command line(Yes, I'm an Emacs fan). After viewing Bash' man, I can't find such tips. Does it need to modify readline's source code to su …
0
votes
4answers
107 views
GNU Readline: how do clear the input line?
I use GNU Readline in the "select" fashion, by registering a callback function like so:
rl_callback_handler_install("", on_readline_input);
And then hooking up rl_callback_read_ …
1
vote
2answers
120 views
Changing word delimiters in bash
I want to change the delimiters bash (or readline) uses to separate words. Specifically I want to make '-' not delimit words, so that if I have the text
ls some-file
and I press …
0
votes
6answers
182 views
Advance C# ReadLine() to next line in a function call
Hello,
In my C# app I'm trying to feed into ReadLine() a simple text document with 7 digit strings separated line by line. What I'm attempting to do is grab the next 7 digit strin …
1
vote
2answers
624 views
c# - StreamReader.ReadLine does not work properly!
Simply I have been trying to implement what BufferedStreamReader does in Java. I have a socket stream open and just want to read it in a line oriented fashion -line by line.
I hav …
