Hi,

I'm currently starting out in the Linux world. ATM I'm getting started with Python development in VIM.

I'm setting up my vim as per Alain M. Lafon's tutorial.

My environment consists of Ubuntu 10.04 Server VM running on VBox (Host is Win7 64 bit) to which I connect using Putty. I also decided that I want to learn about Linux world the terminal way.

I'm writing per project startup scripts to start the proper plugins an example:
Code:
#!/bin/sh
cd /~/python/diveintopython-5.4/py
vim -c TlistOpen
Now I have following questions:

1. How do I get the cursor to start out in code window?
2. How can I prevent mistakingly opening buffers in TagList window (or MiniBuffExplorer window for that matter)?
3. When I mistakingly open a buffer in wrong window - how do I restore the original window content (currently the interface gets fubared after closing the buffer and or toggling the TagList)

I will post further questions in this thread later-on.

Thank you very much.