1
vote
1answer
26 views
How to customize the readline keybindings of ghci
I know ghci supports readline , and keybindings such as ^W and ^U work as expected. But I do wonder whether ghci support the customization of keybindings , just like the way bash deal with inputrc …
1
vote
2answers
100 views
Convert \r text to \n so readlines() works as intended
In Python, you can read a file and load its lines into a list by using
f = open('file.txt','r')
lines = f.readlines()
Each individual line is delimited by \n but if the contents of a line have \r …
1
vote
1answer
25 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
3answers
132 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 getc from a file …
0
votes
1answer
113 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. Here is the logical …
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 possible completion. …
2
votes
1answer
69 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-mode from bash, I …
1
vote
0answers
64 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 example - when I used …
0
votes
1answer
40 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 support this?
Thank …
0
votes
4answers
112 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_char as the callback …
0
votes
6answers
201 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 string each time the …
1
vote
2answers
687 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 have following …
2
votes
5answers
252 views
How to improve speed of this readline loop in python ?
Hi all,
i'm importing several parts of a Databasedump in text Format into MySQL, the problem is
that before the interesting Data there is very much non-interesting stuff infront.
I wrote this loop to …
1
vote
2answers
132 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 Alt-Backspace it …
1
vote
8answers
227 views
parsing CSV files backwards
I have csv files with the following format:
CSV FILE
"a" , "b" , "c" , "d"
hello, world , 1 , 2 , 3
1,2,3,4,5,6,7 , 2 , 456 , 87
h,1231232,3 , 3 , 45 , …
