Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I open Vim's Taglist plugin to the right side of the window?

Tags:

vim

taglist

I have NERDTree on the left side of my Vim's window (and the main files in the center). Every time I open Taglist (:TlistToggle), it is displayed in the left side together with NerdTree. I made a custom remapping for Taglist:

nnoremap <F3> :TlistToggle<CR>

How can I make Taglist open to the right side instead of the left side?

like image 869
alexchenco Avatar asked Jul 05 '10 12:07

alexchenco


1 Answers

Put into your vimrc:

let Tlist_Use_Right_Window   = 1
like image 194
Habi Avatar answered Oct 07 '22 19:10

Habi