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

1

13

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?

Tevere answered 5/7, 2010 at 12:57 Comment(0)
G
21

Put into your vimrc:

let Tlist_Use_Right_Window   = 1
Glisson answered 5/7, 2010 at 13:31 Comment(1)
Works as of NVIM v0.4.3Andromache

© 2022 - 2024 — McMap. All rights reserved.