Re: [Bug-readline] buggy interaction between bracketed-paste mode and vi mode

2019-09-12 Thread Mike Jonkmans
does nothing and the 200~ capitalizes to the end of line. So I use a workaround for this: set keymap vi-command "\e[200~": bracketed-paste-begin "[200~": bracketed-paste-begin set keymap vi-insert "\e[200~": bracketed-paste-begin Regards, Mike -- Mik

Re: tab completion error

2023-09-25 Thread Mike Jonkmans
pty mkdir a\ b touch a\ b/f\ 1 touch a\ b/f\ 2 ls "a b"/"f # f 1 f 2 ls "a b"/"a b/f # ends in space (correct) The directory part is doubled. While: ls "a # f 1 f 2 ls "a b"/ # f 1 f 2 ls a\ b/f # ends in space (correct) Correct. But changed &qu

Re: tab completion error

2023-09-25 Thread Mike Jonkmans
On Mon, Sep 25, 2023 at 03:44:15PM -0400, Chet Ramey wrote: > On 9/25/23 12:16 PM, Mike Jonkmans wrote: > > On Mon, Sep 25, 2023 at 11:11:04AM -0400, Brian Vargo wrote: > > > This is going to be very hard to explain over email. I tried to use > > > script > >

Re: tab completion error

2023-09-28 Thread Mike Jonkmans
On Thu, Sep 28, 2023 at 11:17:22AM -0400, Chet Ramey wrote: > On 9/25/23 5:40 PM, Mike Jonkmans wrote: > > On Mon, Sep 25, 2023 at 03:44:15PM -0400, Chet Ramey wrote: ... > > Do we need to file an issue with bash-completion? Issue created: https://github.com/scop/bash-completion/is

Re: tab completion error

2023-10-03 Thread Mike Jonkmans
On Tue, Oct 03, 2023 at 10:40:39AM -0400, Chet Ramey wrote: > On 9/28/23 5:55 PM, Mike Jonkmans wrote: > > On Thu, Sep 28, 2023 at 11:17:22AM -0400, Chet Ramey wrote: > > > On 9/25/23 5:40 PM, Mike Jonkmans wrote: > > > > On Mon, Sep 25, 2023 at 03:4

Re: bracketed paste ANSI sequence on non-ANSI terminals

2023-11-06 Thread Mike Jonkmans
dication making it easy to classify terminals > into ANSI and non-ANSI. ... In your $INPUTRC, ~/.inputc or /etc/inputrc you can use the `$if term=...' construct. E.g.: $if term=adm3a set enable-bracketed-paste off $endif See also: man readline -- Regards, Mike Jonkmans