2
votes
3answers
514 views
Installing ipython with readline on the mac
I am using ipython on Mac OS 10.5 with python 2.5.1 (I would actually like to use ipython for 2.6.1, but it doesn't seem to be available?)
I installed ipython via easy_install. It works but is …
1
vote
1answer
42 views
Using the Python shell in Vi mode on WIndows
I know that you can use the Python shell in Vi mode on Unix-like operating systems. For example, I have this line in my ~/.inputrc:
set editing-mode vi
This lets me use Vi-style editing inside the …
2
votes
1answer
45 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
101 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
27 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
371 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 engine terms:
Press alt …
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. …
1
vote
1answer
352 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 up-arrow) and some …
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 symbol table is …
2
votes
3answers
135 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
126 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 …
0
votes
3answers
230 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 sample data
21-ENADT)$ …
2
votes
1answer
75 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
66 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 …
