python(6) interactive shell 配置

最经在玩python,偶然发现 interactive shell 也可以配置

python 的 shell其实也有history在里面。

修改~/.inputrc如下

     set editing-mode vi
     Tab: complete
     set horizontal-scroll-mode On

这样可以用vi模式修改语句,还可以和linux terminal一样重复history里的语句,方便很多。


http://docs.python.org/2/tutorial/interactive.html#tut-interacting

你可能感兴趣的:(python(6) interactive shell 配置)