Jostein Berntsen writes:
> On 25.02.18,16:44, hw wrote:
>> Hi,
>>
>> how do I disable the underlining of the prompt when using Term::ReadLine
>> with GNU readline?
>>
>
> Check this:
>
> https://www.nntp.perl.org/group/perl.beginners/2009/05/m
On 25.02.18,16:44, hw wrote:
> Hi,
>
> how do I disable the underlining of the prompt when using Term::ReadLine
> with GNU readline?
>
Check this:
https://www.nntp.perl.org/group/perl.beginners/2009/05/msg107390.html
Jostein
--
To unsubscribe, e-mail: beginners-unsubscr.
Hi,
how do I disable the underlining of the prompt when using Term::ReadLine
with GNU readline?
--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/
> http://perldoc.perl.org/Term/ReadLine.html
http://perldoc.perl.org/Term/ReadLine.html#Additional-supported-functions
Try $terminal->ornaments(0); -- it works for me in this context:
my $terminal = Term::ReadLine->new('pw7');
$terminal->ornaments(0);
my $r = $ter
Hi,
I have (another) question about resetting the ornaments on a
Term::Readline instance. I can't seem to get the syntax correct on
how to accomplish this. Basically I want to get rid of the underline
in the terminal prompt; I am configuring the new terminal like this
"my $termi
On Tue, May 5, 2009 at 2:46 AM, Yue Chen wrote:
> Hi Guys
>
> I am using Term::Readline::GNU to develop a tool with tab extention.
> So far everything is all right except the prompt string is underlined
> in my term. I am not sure whether it is an issue of library or my
> termin
Hi Guys
I am using Term::Readline::GNU to develop a tool with tab extention.
So far everything is all right except the prompt string is underlined
in my term. I am not sure whether it is an issue of library or my
terminal. I also googled and searched CPAN but failed to get the
answer. Did anyone
Term::ReadLine::GNU just stopped working:
$ perl -e 'use Term::ReadLine; $t=Term::ReadLine->new("test");'
Segmentation fault
OS is linux, kernel 2.6.25. Perl version is 5.8.8 (on a Pentium 4).
Term::ReadLine::GNU is version 1.17 (I also tried 1.16, n
I found this weird behavior when using Term::ReadLine::Gnu in a Perl
program called from vim (in linux). When an area in vim is selected (in
visual mode) and an external program is called, the contents of the
selected area act as STDIN for the program, and are overwritten by the
program's o
On 2/23/07, Gauthier, Dave <[EMAIL PROTECTED]> wrote:
I'm experimenting with Term::Readline as a way to emulate a CLI from
within perl. One of the annoying things it does is to alter the display
characteristics of the string I ask the "readline" method to use as a
pr
Hi:
I'm experimenting with Term::Readline as a way to emulate a CLI from
within perl. One of the annoying things it does is to alter the display
characteristics of the string I ask the "readline" method to use as a
prompt. It always gets underlined, sometimes the color g
Jorge Almeida wrote:
Anyone knows some tutorial about using Term::Readline::Gnu?
Or some article, somewhere?
Hello,
There are some programs under directories eg/ and t/ in
Term::Readline::Gnu module which includes many examples which this
modules support.
Also read the description about
Anyone knows some tutorial about using Term::Readline::Gnu?
Or some article, somewhere?
--
Jorge Almeida
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>
Philipp Traeder wrote:
On Tuesday 08 February 2005 18:57, Scott R. Godin wrote:
This is my first time attempting to use Term::ReadLine to get input from
the commandline while a script is running. I grok the basics of it, but
am stumbling over the implementation of it. Let me illustrate:
READLINE
On Tuesday 08 February 2005 18:57, Scott R. Godin wrote:
> This is my first time attempting to use Term::ReadLine to get input from
> the commandline while a script is running. I grok the basics of it, but
> am stumbling over the implementation of it. Let me illustrate:
>
This is my first time attempting to use Term::ReadLine to get input from
the commandline while a script is running. I grok the basics of it, but
am stumbling over the implementation of it. Let me illustrate:
READLINE:
{
# closure, so I don't have to either
# - call Term::ReadLine
f you have experience with this?
I'm attaching the script, it's short and after running it you can telnet
to localhost:8081
Code:
use IO::Socket;
use Term::ReadLine;
#
# Server Script:
# Copyright 2003 (c) Philip Yuson
# this program is distributed acco
I'm having a heck of a time finding examples of using Term::ReadLine
to allow editing of user input to perl programs.
perldoc Term::ReadLine, at my low level of skill, reads like semi
gibberish and I see no simple examples.
My needs are pretty simple. I wnat to allow the user some ki
18 matches
Mail list logo