I recently made the transition from IPython command windows + N++ to Python Tools for Visual Studio, mainly for rich code completion (it can search non-standard libraries such as NumPy!), but also because it looks good!
The only thing I'm missing from simple white over black IPython is the history search function. I could start typing imp
then press the up arrow, and it would browse only through the commands begining with imp
.
Is there a way to activate this function in PTVS? There is a thing called "smart history" in PTVS, but it turns out it simply allows the user to browse the (unfiltered) history when the cursor is at the last position. Since IPython's history feature comes from a package, shouldn't there be a way to activate it by running a startup script or something similar?