Phil

> Next question: when I used the vsplit, the NERDTree window ended up
> between the two editing windows.  I frequently use a vertical split to
> compare two files - it would be more convenient if they were side by
> side and the NERDTree window was still on the far left . .

Dohhh! I fail.

I usually have the nerd tree window appear on the right, and i
completely didnt even test it when g:NERDTreeWinPos=="left".

Just fixed it now, so grab the latest code


> I used:
>
>          git pull origin add_vsplit
>
> in the nerdtree dir and that seemed to work . .

Id do this
    git clone git://github.com/scrooloose/nerdtree.git
    cd nerdtree
    git branch --track add_vsplit origin/add_vsplit
    git checkout add_vsplit

The third line is the important one, its telling git to create a new
branch and set it up to follow the remote add_vsplit branch. Then you
can use
    git pull origin

to suck down the latest changes.

Doing
    git pull origin add_vsplit

Is merging the add_vsplit branch onto the master branch, which is not
what you want.
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---

Reply via email to