Re: [patch 8/8] Convert between Windows and Unix paths directly on command line

2010-11-02 Thread Daniel Colascione
On 11/2/2010 1:59 PM, Eric Blake wrote: > I'm not so convinced about this one, particularly about the fact that it > consumes a default binding rather than requiring explicit effort to enable. It does require explicit effort: you have to type the key sequence. There are lots of useful functions us

Re: [patch 8/8] Convert between Windows and Unix paths directly on command line

2010-11-02 Thread Eric Blake
On 11/02/2010 02:49 PM, dan.colasci...@gmail.com wrote: > @@ -439,6 +689,10 @@ initialize_readline () >rl_unbind_key_in_map (CTRL('E'), vi_movement_keymap); > #endif > > +#if __CYGWIN__ > + rl_bind_key_if_unbound_in_map (CTRL('W'), cg_dwim, emacs_ctlx_keymap); > +#endif I'm not so convince

[patch 8/8] Convert between Windows and Unix paths directly on command line

2010-11-02 Thread dan . colascione
Index: bash-3.2/bashline.c === --- bash-3.2.orig/bashline.c +++ bash-3.2/bashline.c @@ -37,6 +37,10 @@ # include #endif +#if __CYGWIN__ +# include +#endif + #include #include "chartypes.h" #include "bashansi.h" @@ -342,6 +3

[patch 8/8] Convert between Windows and Unix paths directly on command line

2010-11-01 Thread dan . colascione
-- -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple