X-Authentication-Warning: delorie.com: mailnull set sender to djgpp-bounces using -f Date: Sat, 23 Mar 2002 11:21:45 +0200 From: "Eli Zaretskii" Sender: halo1 AT zahav DOT net DOT il To: new AT psycho DOT univ-paris5 DOT fr Message-Id: <3995-Sat23Mar2002112145+0200-eliz@is.elta.co.il> X-Mailer: emacs 21.2.50 (via feedmail 8 I) and Blat ver 1.8.9 CC: djgpp AT delorie DOT com In-reply-to: <001001c1d219$29a3caa0$babcf8c1@MMMMM> (frenchtouch2@ifrance.com) Subject: Re: horizontal-scroll-mode off in bash References: <6abe6184 DOT 0203220913 DOT 5518fa09 AT posting DOT google DOT com> <2427-Fri22Mar2002203846+0200-eliz AT is DOT elta DOT co DOT il> <001001c1d219$29a3caa0$babcf8c1 AT MMMMM> Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > Reply-To: "Boris New" > From: "Boris New" > > Here is my _inputrc file: > > set horizontal-scroll-mode off Seems like a DJGPP-specific misfeature: this works for me on GNU/Luinux, but not on DOS/Windows. From looking at the sources of the Readline library (used by Bash and GDB to implement the CLI user interface), I'm guessing that the DJGPP terminal support lacks the features that are required by the no-scroll option: it needs to wrap long lines instead, so it needs to know terminal commands to do that. If the DJGPP terminal emulation doesn't supply those commands, Readline will continue horizontal scrolling even if you turn horizontal-scroll-mode off (it is documented to be OFF by default, btw). Volunteers are welcome to fix that and submit the changes to the Readline maintainer.