-1

enter image description here

I want to know to how remove left part which I don't know how to name it using macvim. I have tried below code in .vimrc.

:set guioptions-=m  "remove menu bar
:set guioptions-=T  "remove toolbar
:set guioptions-=r  "remove right-hand scroll bar
:set guioptions-=L  "remove left-hand scroll bar

But the left menu still there.

dlmeetei
  • 9,905
  • 3
  • 31
  • 38
Peter Tsung
  • 915
  • 2
  • 10
  • 20

1 Answers1

4

The side pane that you see, which is from NerdTree, can be toggled by mapping to a key of convenience, for example F6 here.

:nnoremap <F6> :NERDTreeToggle<CR>

You can use :NERDTreeClose to close it but I like toggling which save keystrokes.

dlmeetei
  • 9,905
  • 3
  • 31
  • 38