ervandew / screen

Simulate a split shell in vim using gnu screen or tmux
203 stars 31 forks source link

IPythonVertical support #19

Closed gokcehan closed 11 years ago

gokcehan commented 11 years ago

I have added an IPythonVertical command as I couldn't find an easy way to create vertical ipython panes (I realized when I first run ScreenShellVertical and close it afterwards with ScreenQuit and then start ipython with IPython it opens up in vertical but I'm not sure if that's intended or not). We can add something to the documentation if you decide to include.

ervandew commented 11 years ago

Thank you for the patch, however after thinking about it for a bit, I decided that I really want to avoid creating more commands than necessary and avoid duplication of code, so I opted to instead add ! support to the existing commands. So now :ScreenShell! and :IPython! will open a vertically split window if supported. I'd like to get rid of the :ScreenShellVertical command as well, but unfortunately at least one 3rd party plugin makes use of that command so I'm keeping it around for backwards compatibility.

gokcehan commented 11 years ago

even better, thanks..