开发者

How to make NERDTree always open on the right side?

开发者 https://www.devze.com 2023-02-13 15:00 出处:网络
NERDTreeToggle always makes开发者_如何学JAVA it show up on the left side. I\'d like to make it show up on the right. Is it possible to do that?Add this line to your .vimrc:

NERDTreeToggle always makes开发者_如何学JAVA it show up on the left side. I'd like to make it show up on the right. Is it possible to do that?


Add this line to your .vimrc:

let g:NERDTreeWinPos = "right"


You can change the window position in your NERD_Tree.vim file too. I usually like looking through .vim files, if only to help keep my .vimrc file clear.

Here is the code to change:

call s:initVariable("g:NERDTreeWinPos", "left") "default
call s:initVariable("g:NERDTreeWinPos", "right")

The code should be at line number 90, if not then I have included the default so that you can search for it.

Also, here is a link for some info on the NERD_Tree.vim file.


I Open NERDTree at right window with this.

$ vim ~/.vimrc
...

let NERDTreeWinPos=1
0

精彩评论

暂无评论...
验证码 换一张
取 消