Someone please correct me if I'm wrong, I'm going to take a stab because I'm trying to learn this.
bpython doesn't currently support prev/next words. You could add this to bpython, but you'd have trouble binding it to ctrl+left arrow - as I understand it, ctrl-left array and ctrl-right arrow aren't passed through by the curses terminal wrapper library in any nice way, so with the curses frontend you're stuck, it can't be easily implemented. However, I've implemented it in my alternate bpython frontend which doesn't use the curses library. I'm working toward getting a patch prepared for - it's currently in a git repo at https://github.com/thomasballinger/scottwasright, but if all goes well and people like it it could be in bpython trunk before too long. (this was actually just an excuse to tell you about it :) Tom On Mon, Aug 19, 2013 at 8:45 AM, Ludovico Magnocavallo <[email protected]> wrote: > I just started checking bpython and it seems great! > > One thing I miss though is the ability to move to previous/next words > using ctrl+left arrow or ctrl+right arrow. I quickly browsed the manual but > did not see any relevant option, is it something which is natively > supported? > > And yes, I'm too lazy to check the source code myself (yet). :) > > Ludo > > -- > You received this message because you are subscribed to the Google Groups > "bpython" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/bpython. > For more options, visit https://groups.google.com/groups/opt_out. > -- You received this message because you are subscribed to the Google Groups "bpython" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/bpython. For more options, visit https://groups.google.com/groups/opt_out.
